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.
This commit is contained in:
Daniel Cousens 2014-06-15 00:38:21 +10:00
parent 8e00eb6855
commit 55ff383c7b

View file

@ -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