From a7dfb0036ba44f4ae855e6be3f801bc1a7b98e5f Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 9 Aug 2025 22:43:20 -0700 Subject: [PATCH] Reorder imports. --- src/lib/wallet/wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/wallet/wallet.ts b/src/lib/wallet/wallet.ts index 61f0828..49d02af 100644 --- a/src/lib/wallet/wallet.ts +++ b/src/lib/wallet/wallet.ts @@ -6,12 +6,12 @@ import { Account, AccountList } from '../account' import { Block } from '../block' import { ADDRESS_GAP } from '../constants' import { bytes, hex, utf8 } from '../convert' +import { _create } from './create' import { Database } from '../database' import { _load } from './load' import { Rpc } from '../rpc' import { default as SafeWorker } from './safe' import { WorkerQueue } from './worker-queue' -import { _create } from './create' /** * Represents a wallet containing numerous Nano accounts derived from a single -- 2.47.3