Merge pull request #383 from JDonadio/fix/edit-note

Fix edit memo
This commit is contained in:
Matias Alejo Garcia 2016-10-12 11:50:10 -03:00 committed by GitHub
commit 99efe06343
4 changed files with 29 additions and 19 deletions

View file

@ -512,6 +512,12 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
});
};
root.editTxNote = function(wallet, args, cb) {
wallet.editTxNote(args, function(err, res) {
return cb(err, res);
});
};
root.getTxp = function(wallet, txpid, cb) {
wallet.getTx(txpid, function(err, txp) {
if (err) return cb(err);