From fbbc8f5fb2bdb1bfe8c03624d7e2611a913b6eca Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Tue, 9 Dec 2014 09:46:40 -0800 Subject: [PATCH] return tx on sign tx. --- lib/bitcoind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bitcoind.js b/lib/bitcoind.js index 6c129dab..caa19695 100644 --- a/lib/bitcoind.js +++ b/lib/bitcoind.js @@ -794,7 +794,7 @@ Transaction.fill = function(tx, options) { tx[key] = newTx[key]; }); - return isTx ? true : tx; + return tx; }; Transaction.prototype.getHash = function(enc) {