Mercado Libre: First steps

This commit is contained in:
Gustavo Maximiliano Cortez 2017-05-08 09:23:47 -03:00
commit 9abd852f4b
No known key found for this signature in database
GPG key ID: 15EDAD8D9F2EB1AF
18 changed files with 3648 additions and 0 deletions

View file

@ -610,5 +610,17 @@ angular.module('copayApp.services')
storage.remove('txConfirmNotif-' + txid, cb);
};
root.setMercadoLibreGiftCards = function(network, gcs, cb) {
storage.set('mercadoLibreGiftCards-' + network, gcs, cb);
};
root.getMercadoLibreGiftCards = function(network, cb) {
storage.get('mercadoLibreGiftCards-' + network, cb);
};
root.removeMercadoLibreGiftCards = function(network, cb) {
storage.remove('MercadoLibreGiftCards-' + network, cb);
};
return root;
});