TxBuilder: vout is actually vin for addInput

This commit is contained in:
Daniel Cousens 2015-02-05 13:29:59 +11:00
parent c7c58307f0
commit 986e9d4710

View file

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