Transaction: remove untestable assert
Also changes the fromBuffer sanity test to use a clearer message that is taken from the fixtures.
This commit is contained in:
parent
1b1b550bd6
commit
4850570955
2 changed files with 2 additions and 3 deletions
|
@ -144,7 +144,6 @@ Transaction.prototype.toBuffer = function () {
|
|||
})
|
||||
|
||||
writeUInt32(this.locktime)
|
||||
assert.equal(offset, buffer.length, 'Invalid transaction object')
|
||||
|
||||
return buffer
|
||||
}
|
||||
|
@ -286,7 +285,7 @@ Transaction.fromBuffer = function(buffer) {
|
|||
}
|
||||
|
||||
tx.locktime = readUInt32()
|
||||
assert.equal(offset, buffer.length, 'Invalid transaction')
|
||||
assert.equal(offset, buffer.length, 'Transaction has unexpected data')
|
||||
|
||||
return tx
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue