tests: check HDNode stores keyPair/chainCode
This commit is contained in:
parent
7b0060d4a5
commit
ab66c983af
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue