diff --git a/test/reference-implementations.test.ts b/test/reference-implementations.test.ts index ec01f994..a3927a56 100644 --- a/test/reference-implementations.test.ts +++ b/test/reference-implementations.test.ts @@ -1,6 +1,6 @@ import { BIP44Node, - SLIP10PathNode, + SLIP10Node, BIP44PurposeNodeToken, HDPathTuple, } from '../src'; @@ -215,7 +215,7 @@ describe('reference implementation tests', () => { for (const keyObj of vector.keys) { const { path, privateKey } = keyObj; - let targetNode: SLIP10PathNode; + let targetNode: SLIP10Node; // If the path is empty, use the master node if (path.ours.string === '') { @@ -247,7 +247,7 @@ describe('reference implementation tests', () => { ); for (const { path, privateKey, publicKey } of keys) { - let targetNode: SLIP10PathNode; + let targetNode: SLIP10Node; if (path.ours.string === '') { targetNode = node; } else {