From 724f496f14e85398aab951218fd08ccce6788376 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sat, 26 Jul 2025 01:03:10 -0700 Subject: [PATCH] Fix incorrect ID stored for wallets. --- src/lib/wallets/wallet.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/wallets/wallet.ts b/src/lib/wallets/wallet.ts index 530a822..942725e 100644 --- a/src/lib/wallets/wallet.ts +++ b/src/lib/wallets/wallet.ts @@ -202,7 +202,7 @@ export abstract class Wallet { throw new Error('password must be string or bytes') } const serialized = JSON.stringify({ - id: this.#id.hex, + id: this.id, mnemonic: this.#m?.phrase, seed: this.#s == null ? this.#s : bytes.toHex(this.#s) }) -- 2.47.3