From 6307820f04a8fc6662b1919e5757437445b193cf Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 3 Aug 2026 14:31:34 -0700 Subject: [PATCH] Fix weak password for test. --- test/test.blocks.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.blocks.mjs b/test/test.blocks.mjs index ee905db..a82a52d 100644 --- a/test/test.blocks.mjs +++ b/test/test.blocks.mjs @@ -234,8 +234,8 @@ await Promise.all([ }) await test('sign Ledger-derived open block', async () => { - const wallet = await Wallet.load('BIP-44', '', LEDGER_NANOS.MNEMONIC) - await wallet.unlock('') + const wallet = await Wallet.load('BIP-44', NANO_TEST_VECTORS.PASSWORD, LEDGER_NANOS.MNEMONIC) + await wallet.unlock(NANO_TEST_VECTORS.PASSWORD) const account = await wallet.account() assert.equal(account.publicKey, LEDGER_NANOS.PUBLIC_0) assert.equal(account.address, LEDGER_NANOS.ADDRESS_0) -- 2.52.0