open a rejected txp
This commit is contained in:
parent
60a7f0c287
commit
c12f33b1d9
3 changed files with 28 additions and 8 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue