Adjusted test cases as requested.

Test that the SequenceNumber is zero

Remove unncessary expect
This commit is contained in:
Zaki Manian 2015-08-27 14:54:42 -07:00
parent aa8e548800
commit c7c1122123
1 changed files with 6 additions and 6 deletions

View File

@ -752,15 +752,15 @@ describe('Transaction', function() {
var transaction = new Transaction() var transaction = new Transaction()
.from(simpleUtxoWith1BTC) .from(simpleUtxoWith1BTC)
.lockUntilDate(date); .lockUntilDate(date);
expect(transaction.inputs[0].sequenceNumber transaction.inputs[0].sequenceNumber
.should.not.equal(Transaction.Input.DEFAULT_SEQNUMBER)); .should.equal(Transaction.Input.DEFAULT_LOCKTIME_SEQNUMBER);
}); });
it('has a non-max sequenceNumber for effective blockheight locktime tx', function() { it('has a non-max sequenceNumber for effective blockheight locktime tx', function() {
var transaction = new Transaction() var transaction = new Transaction()
.from(simpleUtxoWith1BTC) .from(simpleUtxoWith1BTC)
.lockUntilBlockHeight(blockHeight); .lockUntilBlockHeight(blockHeight);
expect(transaction.inputs[0].sequenceNumber transaction.inputs[0].sequenceNumber
.should.not.equal(Transaction.Input.DEFAULT_SEQNUMBER)); .should.equal(Transaction.Input.DEFAULT_LOCKTIME_SEQNUMBER);
}); });
it('should serialize correctly for date locktime ', function() { it('should serialize correctly for date locktime ', function() {
var transaction= new Transaction() var transaction= new Transaction()
@ -768,7 +768,7 @@ describe('Transaction', function() {
.lockUntilDate(date); .lockUntilDate(date);
var serialized_tx = transaction.uncheckedSerialize(); var serialized_tx = transaction.uncheckedSerialize();
var copy = new Transaction(serialized_tx); var copy = new Transaction(serialized_tx);
expect(serialized_tx.should.equal(copy.uncheckedSerialize())); serialized_tx.should.equal(copy.uncheckedSerialize());
}); });
it('should serialize correctly for a block height locktime', function() { it('should serialize correctly for a block height locktime', function() {
var transaction= new Transaction() var transaction= new Transaction()
@ -776,7 +776,7 @@ describe('Transaction', function() {
.lockUntilBlockHeight(blockHeight); .lockUntilBlockHeight(blockHeight);
var serialized_tx = transaction.uncheckedSerialize(); var serialized_tx = transaction.uncheckedSerialize();
var copy = new Transaction(serialized_tx); var copy = new Transaction(serialized_tx);
expect(serialized_tx.should.equal(copy.uncheckedSerialize())); serialized_tx.should.equal(copy.uncheckedSerialize());
}); });
}); });