tap to lock balance
This commit is contained in:
parent
82558a1696
commit
efa36915e1
3 changed files with 30 additions and 2 deletions
|
|
@ -200,6 +200,14 @@ angular.module('copayApp.services')
|
|||
storage.remove('config', cb);
|
||||
};
|
||||
|
||||
root.setHideBalanceFlag = function(walletId, val, cb) {
|
||||
storage.set('hideBalance-' + walletId, val, cb);
|
||||
};
|
||||
|
||||
root.getHideBalanceFlag = function(walletId, cb) {
|
||||
storage.get('hideBalance-' + walletId, cb);
|
||||
};
|
||||
|
||||
//for compatibility
|
||||
root.getCopayDisclaimerFlag = function(cb) {
|
||||
storage.get('agreeDisclaimer', cb);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue