Ref delete wallet

This commit is contained in:
Gustavo Maximiliano Cortez 2015-11-06 16:54:25 -03:00
commit 1d064d1ee1
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
3 changed files with 22 additions and 8 deletions

View file

@ -159,6 +159,10 @@ angular.module('copayApp.services')
storage.get('backup-' + walletId, cb);
};
root.clearBackupFlag = function(walletId, cb) {
storage.remove('backup-' + walletId, cb);
};
root.setCleanAndScanAddresses = function(walletId, cb) {
storage.set('CleanAndScanAddresses', walletId, cb);
};