Browse Source

Transaction: remove untested hash array support

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

1
src/transaction.js

@ -68,7 +68,6 @@ Transaction.prototype.addInput = function (tx, outIndex) {
} else {
hash = typeof tx === "string" ? tx : tx.hash
hash = Array.isArray(hash) ? convert.bytesToHex(hash) : hash
}
this.ins.push(new TransactionIn({

Loading…
Cancel
Save