tests: add isCoinbase tests and flags to fixtures

This commit is contained in:
Daniel Cousens 2016-05-03 21:51:30 +10:00
parent f958dd1e86
commit ea2a7449ad
2 changed files with 20 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -162,6 +162,16 @@ describe('Transaction', function () {
}) })
}) })
describe('isCoinbase', function () {
fixtures.valid.forEach(function (f) {
it('should return ' + f.coinbase + ' for ' + f.id, function () {
var tx = Transaction.fromHex(f.hex)
assert.strictEqual(tx.isCoinbase(), f.coinbase)
})
})
})
// TODO: // TODO:
// hashForSignature: [Function], // hashForSignature: [Function],
}) })