show receive tips

This commit is contained in:
Javier 2016-09-12 15:04:12 -03:00
commit 3c353fdbcb
5 changed files with 63 additions and 1 deletions

View file

@ -342,6 +342,14 @@ angular.module('copayApp.services')
});
};
root.setReceiveTipsAccepted = function(val, cb) {
storage.set('receiveTips', val, cb);
};
root.getReceiveTipsAccepted = function(cb) {
storage.get('receiveTips', cb);
};
root.setAmazonGiftCards = function(network, gcs, cb) {
storage.set('amazonGiftCards-' + network, gcs, cb);
};