From e5ff496c5b23d6c49861129fa5a46d6b4403b40e Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Mon, 10 Aug 2026 22:02:50 -0700 Subject: [PATCH] Fix test account range. --- test/test.refresh-accounts.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.refresh-accounts.mjs b/test/test.refresh-accounts.mjs index a4f55ce..f24b533 100644 --- a/test/test.refresh-accounts.mjs +++ b/test/test.refresh-accounts.mjs @@ -160,10 +160,10 @@ await Promise.all([ await test('should get balance, frontier, and representative for multiple accounts', async () => { const wallet = await Wallet.load('BIP-44', TEST_PASSWORD, NANO_TEST_VECTORS.BIP39_SEED) await wallet.unlock(TEST_PASSWORD) - const accounts = await wallet.refresh(rpc, 0, 2) + const accounts = await wallet.refresh(rpc, 0, 3) assert.equal(accounts.size, 3) - for (let i = 0; i < 2; i++) { + for (let i = 0; i < 3; i++) { const account = accounts.get(i) assert.exists(account) assert.ok(account instanceof Account) -- 2.52.0