Browse Source

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.
hk-custom-address
Daniel Cousens 11 years ago
parent
commit
55ff383c7b
  1. 2
      src/wallet.js

2
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

Loading…
Cancel
Save