open a rejected txp

This commit is contained in:
Javier 2016-09-21 16:04:25 -03:00
commit c12f33b1d9
3 changed files with 28 additions and 8 deletions

View file

@ -502,6 +502,13 @@ angular.module('copayApp.services').factory('walletService', function($log, $tim
});
};
root.getTxp = function(wallet, txpid, cb) {
wallet.getTx(txpid, function(err, txp) {
if (err) return cb(err);
return cb(null, txp);
});
};
root.getTx = function(wallet, txid, cb) {
var tx;