adding uuid and deleting crypto library

This commit is contained in:
Gabriel Bazán 2016-07-28 15:40:14 -03:00 committed by Gustavo Maximiliano Cortez
commit 92b49ce154
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
5 changed files with 35 additions and 21 deletions

View file

@ -330,5 +330,13 @@ angular.module('copayApp.services')
storage.remove('amazonGiftCards-' + network, cb);
};
root.setAmazonUUID = function(network, uuid, cb) {
storage.set('amazonUUID-' + network, uuid, cb);
};
root.getAmazonUUID = function(network, cb) {
storage.get('amazonUUID-' + network, cb);
};
return root;
});