From 51cd9b8d16a109c7c6cb71dce436c67b0aa64b58 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Wed, 5 Aug 2026 00:50:46 -0700 Subject: [PATCH] Fix missing action for seed usage. --- src/lib/vault/parsers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/vault/parsers.ts b/src/lib/vault/parsers.ts index 44fbcee..9e8cae9 100644 --- a/src/lib/vault/parsers.ts +++ b/src/lib/vault/parsers.ts @@ -44,7 +44,7 @@ export function parseData (action: string, data: Record) { if (!(data.seed instanceof ArrayBuffer)) { throw new TypeError('Invalid wallet seed') } - if (action === 'load') { + if (['load', 'verify'].includes(action)) { seed = data.seed.slice() } new Uint8Array(data.seed).fill(0) -- 2.52.0