From: Chris Duncan Date: Mon, 3 Aug 2026 21:31:34 +0000 (-0700) Subject: Fix weak password for test. X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=6307820f04a8fc6662b1919e5757437445b193cf;p=libnemo.git Fix weak password for test. --- 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)