Transaction: use TxIn/TxOut consistently
This commit is contained in:
parent
8b5647b0b9
commit
40f0c91162
1 changed files with 5 additions and 5 deletions
|
@ -293,14 +293,14 @@ Transaction.fromBuffer = function(buffer) {
|
||||||
var script = readSlice(scriptLen)
|
var script = readSlice(scriptLen)
|
||||||
var sequence = readUInt32()
|
var sequence = readUInt32()
|
||||||
|
|
||||||
ins.push({
|
ins.push(new TransactionIn({
|
||||||
outpoint: {
|
outpoint: {
|
||||||
hash: hash.toString('hex'),
|
hash: hash.toString('hex'),
|
||||||
index: vout,
|
index: vout
|
||||||
},
|
},
|
||||||
script: Script.fromBuffer(script),
|
script: Script.fromBuffer(script),
|
||||||
sequence: sequence
|
sequence: sequence
|
||||||
})
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
var voutLen = readVarInt()
|
var voutLen = readVarInt()
|
||||||
|
@ -310,10 +310,10 @@ Transaction.fromBuffer = function(buffer) {
|
||||||
var scriptLen = readVarInt()
|
var scriptLen = readVarInt()
|
||||||
var script = readSlice(scriptLen)
|
var script = readSlice(scriptLen)
|
||||||
|
|
||||||
outs.push({
|
outs.push(new TransactionOut({
|
||||||
value: value,
|
value: value,
|
||||||
script: Script.fromBuffer(script)
|
script: Script.fromBuffer(script)
|
||||||
})
|
}))
|
||||||
}
|
}
|
||||||
|
|
||||||
var locktime = readUInt32()
|
var locktime = readUInt32()
|
||||||
|
|
Loading…
Reference in a new issue