From 3a56f97377ff28433659bc69e25e410de3bc4825 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Tue, 2 Sep 2025 22:45:30 -0700 Subject: [PATCH] Fix missing wallet in test. --- test/test.ledger.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.ledger.mjs b/test/test.ledger.mjs index 8a88044..a8fcee7 100644 --- a/test/test.ledger.mjs +++ b/test/test.ledger.mjs @@ -189,7 +189,7 @@ await Promise.all([ await test('fail to sign a block without caching frontier', async () => { sendBlock = new Block(account, receiveBlock.balance, receiveBlock.hash, SEND_BLOCK.representative) .send(account.address, '0') - await assert.rejects(sendBlock.sign(0)) + await assert.rejects(sendBlock.sign(wallet, 0)) }) }) /* node:coverage enable */ -- 2.47.3