tests: check HDNode stores keyPair/chainCode

This commit is contained in:
Daniel Cousens 2015-05-07 11:24:53 +10:00
parent 7b0060d4a5
commit ab66c983af

View file

@ -23,6 +23,13 @@ describe('HDNode', function () {
chainCode.fill(1)
})
it('stores the keyPair/chainCode directly', function () {
var hd = new HDNode(keyPair, chainCode)
assert.strictEqual(hd.keyPair, keyPair)
assert.strictEqual(hd.chainCode, chainCode)
})
it('has a default depth/index of 0', function () {
var hd = new HDNode(keyPair, chainCode)