sync memo
This commit is contained in:
parent
fca4a154c3
commit
93d694d048
5 changed files with 36 additions and 24 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue