From 024334670cf93fe785c372fb3f057318d565ed2f Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 9 Aug 2025 22:17:17 -0700 Subject: [PATCH] Remove unused imports. --- src/lib/wallet/load.ts | 2 +- src/lib/wallet/wallet.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/wallet/load.ts b/src/lib/wallet/load.ts index b2eb3c5..245f28a 100644 --- a/src/lib/wallet/load.ts +++ b/src/lib/wallet/load.ts @@ -3,7 +3,7 @@ import { Bip39 } from '#crypto' import { NamedData } from '#types' -import { hex, utf8 } from '../convert' +import { hex } from '../convert' import { Database } from '../database' import { Wallet } from './wallet' diff --git a/src/lib/wallet/wallet.ts b/src/lib/wallet/wallet.ts index 1a36248..e3446c3 100644 --- a/src/lib/wallet/wallet.ts +++ b/src/lib/wallet/wallet.ts @@ -1,7 +1,6 @@ //! SPDX-FileCopyrightText: 2025 Chris Duncan //! SPDX-License-Identifier: GPL-3.0-or-later -import { Bip39 } from '#crypto' import { KeyPair, NamedData, WalletType } from '#types' import { Account, AccountList } from '../account' import { Block } from '../block' -- 2.47.3