update fixtures and tests for merge

This commit is contained in:
Bez Reyhan 2014-12-15 19:21:34 -08:00
parent 044c53bcad
commit 1c6d5a28a9
2 changed files with 6 additions and 1 deletions

View file

@ -117,7 +117,7 @@ describe('Transaction', function() {
var script = txIn.script ? Script.fromASM(txIn.script) : undefined
var j = tx.addInput(txHash, txIn.index, txIn.sequence, script)
var sequence = txIn.sequence
if (sequence === undefined) {
if (sequence === undefined || sequence === null ) {
sequence = Transaction.DEFAULT_SEQUENCE
}