TxBuilder: vout is actually vin for addInput
This commit is contained in:
parent
c7c58307f0
commit
986e9d4710
1 changed files with 4 additions and 5 deletions
|
@ -186,12 +186,11 @@ TransactionBuilder.prototype.addInput = function(prevTx, index, sequence, prevOu
|
|||
var prevOut = prevOutHash.toString('hex') + ':' + index
|
||||
assert(!(prevOut in this.prevTxMap), 'Transaction is already an input')
|
||||
|
||||
var vout = this.tx.addInput(prevOutHash, index, sequence)
|
||||
var vin = this.tx.addInput(prevOutHash, index, sequence)
|
||||
this.inputs[vin] = input
|
||||
this.prevTxMap[prevOut] = vin
|
||||
|
||||
this.prevTxMap[prevOut] = true
|
||||
this.inputs[vout] = input
|
||||
|
||||
return vout
|
||||
return vin
|
||||
}
|
||||
|
||||
TransactionBuilder.prototype.addOutput = function(scriptPubKey, value) {
|
||||
|
|
Loading…
Add table
Reference in a new issue