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:
parent
8e00eb6855
commit
55ff383c7b
1 changed files with 1 additions and 1 deletions
|
@ -243,7 +243,7 @@ function Wallet(seed, network) {
|
||||||
tx.ins.forEach(function(inp,i) {
|
tx.ins.forEach(function(inp,i) {
|
||||||
var output = me.outputs[inp.outpoint.hash + ':' + inp.outpoint.index]
|
var output = me.outputs[inp.outpoint.hash + ':' + inp.outpoint.index]
|
||||||
if (output) {
|
if (output) {
|
||||||
tx.sign(i, me.getPrivateKeyForAddress(output.address), false)
|
tx.sign(i, me.getPrivateKeyForAddress(output.address))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
return tx
|
return tx
|
||||||
|
|
Loading…
Add table
Reference in a new issue