Browse Source

Transaction: remove TxIn/TxOut clone

hk-custom-address
Daniel Cousens 11 years ago
parent
commit
b5268465db
  1. 18
      src/transaction.js

18
src/transaction.js

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

Loading…
Cancel
Save