From 5c83884981fa684f6c4f74ad08404643af5b8707 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Sun, 27 Jul 2025 02:21:18 -0700 Subject: [PATCH] Fix updated schema for test. --- test/test.import-wallet.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.import-wallet.mjs b/test/test.import-wallet.mjs index 59f5faf..a7b5dfd 100644 --- a/test/test.import-wallet.mjs +++ b/test/test.import-wallet.mjs @@ -306,7 +306,7 @@ await Promise.all([ const wallet = await Bip44Wallet.fromMnemonic(NANO_TEST_VECTORS.PASSWORD, NANO_TEST_VECTORS.MNEMONIC, NANO_TEST_VECTORS.PASSWORD) const ids = await Bip44Wallet.export() - assert.ok(ids.some(id => id === wallet.id)) + assert.ok(ids['BIP-44'].some(id => `BIP-44_${id}` === wallet.id)) const restored = await Bip44Wallet.restore(wallet.id) -- 2.47.3