From: Chris Duncan Date: Fri, 26 Jun 2026 21:54:29 +0000 (-0700) Subject: Reorganize imports. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=590170123be17ca3fb950089d2f23912e9a602f8;p=libnemo.git Reorganize imports. --- diff --git a/src/lib/vault/vault-worker.ts b/src/lib/vault/vault-worker.ts index 4028cf4..5bf0f4b 100644 --- a/src/lib/vault/vault-worker.ts +++ b/src/lib/vault/vault-worker.ts @@ -1,13 +1,13 @@ //! SPDX-FileCopyrightText: 2025 Chris Duncan //! SPDX-License-Identifier: GPL-3.0-or-later -import { derive as nano25519_derive, sign as nano25519_sign } from 'nano25519' +import { derive as nano25519_derive, sign as nano25519_sign } from 'nano25519/sync' import { parentPort, threadId } from 'node:worker_threads' import { BIP44_COIN_NANO } from '../constants' import { Bip39, Bip44, Blake2b, WalletAesGcm } from '../crypto' import { WalletType } from '../wallet' -import { Passkey } from './passkey' import { parseAction, parseData, parseIv, parseKeySalt, parseType } from './parsers' +import { Passkey } from './passkey' import { VaultTimer } from './vault-timer' const encoder = new TextEncoder()