refactor baseUrl in angular-bwc
This commit is contained in:
parent
a8ef458941
commit
6bd316424a
4 changed files with 21 additions and 43 deletions
|
|
@ -173,6 +173,14 @@ angular.module('copayApp.services')
|
|||
storage.remove('backup-' + walletId, cb);
|
||||
};
|
||||
|
||||
root.setDerivationTestFlag = function(walletId, ua, cb) {
|
||||
storage.set('DerivationTest-'+walletId+ua.replace(' ', ''), true, cb);
|
||||
};
|
||||
|
||||
root.getDerivationTestFlag = function(walletId, ua, cb) {
|
||||
storage.get('DerivationTest-'+walletId+ua.replace(' ', ''), cb);
|
||||
};
|
||||
|
||||
root.setCleanAndScanAddresses = function(walletId, cb) {
|
||||
storage.set('CleanAndScanAddresses', walletId, cb);
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue