Transaction: remove TxIn/TxOut clone

This commit is contained in:
Daniel Cousens 2014-06-15 01:39:59 +10:00
parent a17208a549
commit b5268465db

View file

@ -332,27 +332,9 @@ function TransactionIn(data) {
this.sequence = data.sequence == undefined ? DEFAULT_SEQUENCE : data.sequence
}
TransactionIn.prototype.clone = function () {
return new TransactionIn({
outpoint: {
hash: this.outpoint.hash,
index: this.outpoint.index
},
script: this.script,
sequence: this.sequence
})
}
function TransactionOut(data) {
this.script = data.script
this.value = data.value
}
TransactionOut.prototype.clone = function() {
return new TransactionOut({
script: this.script,
value: this.value
})
}
module.exports = Transaction