sync memo

This commit is contained in:
Javier 2016-09-21 17:28:59 -03:00
commit 93d694d048
5 changed files with 36 additions and 24 deletions

View file

@ -502,6 +502,15 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
});
};
root.getTxNote = function(wallet, txid, cb) {
wallet.getTxNote({
txid: txid
}, function(err, note) {
if (err || !note) return cb(true);
return cb(null, note);
});
};
root.getTxp = function(wallet, txpid, cb) {
wallet.getTx(txpid, function(err, txp) {
if (err) return cb(err);