From 55ff383c7b94f9a7f52b73e6fc04fffe5f68dd6b Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Sun, 15 Jun 2014 00:38:21 +1000 Subject: [PATCH] Wallet: remove superfluous false parameter This parameter is unnecessary. The use of `false` causes the default parameter to be used instead; even though the absence of such would also cause said behaviour to occur. --- src/wallet.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet.js b/src/wallet.js index 2b708e6..aa9355c 100644 --- a/src/wallet.js +++ b/src/wallet.js @@ -243,7 +243,7 @@ function Wallet(seed, network) { tx.ins.forEach(function(inp,i) { var output = me.outputs[inp.outpoint.hash + ':' + inp.outpoint.index] if (output) { - tx.sign(i, me.getPrivateKeyForAddress(output.address), false) + tx.sign(i, me.getPrivateKeyForAddress(output.address)) } }) return tx