Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrtenz committed Mar 8, 2023
1 parent 835d61e commit ae1386e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/reference-implementations.test.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {
BIP44Node,
SLIP10PathNode,
SLIP10Node,
BIP44PurposeNodeToken,
HDPathTuple,
} from '../src';
Expand Down Expand Up @@ -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 === '') {
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit ae1386e

Please sign in to comment.