Adds uuid for BitPay invoice
This commit is contained in:
parent
70ded721bf
commit
6db2d13b7d
2 changed files with 48 additions and 13 deletions
|
|
@ -342,5 +342,17 @@ angular.module('copayApp.services')
|
|||
storage.remove('amazonLimits-' + network, cb);
|
||||
};
|
||||
|
||||
root.setAmazonUuid = function(network, uuid, cb) {
|
||||
storage.set('amazonUuid-' + network, uuid, cb);
|
||||
};
|
||||
|
||||
root.getAmazonUuid = function(network, cb) {
|
||||
storage.get('amazonUuid-' + network, cb);
|
||||
};
|
||||
|
||||
root.removeAmazonUuid = function(network, cb) {
|
||||
storage.remove('amazonUuid-' + network, cb);
|
||||
};
|
||||
|
||||
return root;
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue