From 1e098a0d5d88b18a62822ab8c3baf03f1b8d7545 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 10 Jul 2025 23:02:53 -0700 Subject: [PATCH] Remove unused imports. --- test/test.derive-accounts.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.derive-accounts.mjs b/test/test.derive-accounts.mjs index e9b8661..a3ef8ca 100644 --- a/test/test.derive-accounts.mjs +++ b/test/test.derive-accounts.mjs @@ -3,9 +3,9 @@ 'use strict' -import { assert, isNode, suite, test } from './GLOBALS.mjs' +import { assert, suite, test } from './GLOBALS.mjs' import { NANO_TEST_VECTORS } from './VECTORS.js' -import { Bip44Wallet, Blake2bWallet, LedgerWallet } from '../dist/main.min.js' +import { Bip44Wallet, Blake2bWallet } from '../dist/main.min.js' await suite('BIP-44 account derivation', async () => { await test('should derive the first account from the given BIP-44 seed', async () => { -- 2.47.3