From ae1386ea2976f1fdbaee348f995c405a1ef054f5 Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Wed, 8 Mar 2023 16:02:24 +0100 Subject: [PATCH] Fix import --- test/reference-implementations.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 {