From ee4c431bc8af168d6aaed0c421cb8e61d20879ab Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Tue, 27 Aug 2024 16:16:17 +0530 Subject: [PATCH] Reduce number of txs in batched txs test --- src/index.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.test.ts b/src/index.test.ts index e9268a4..8a86914 100644 --- a/src/index.test.ts +++ b/src/index.test.ts @@ -49,7 +49,7 @@ const registryTests = () => { beforeAll(async () => { // Fund 10 new accounts for the test - accounts = await createTestAccounts(10); + accounts = await createTestAccounts(5); for (let i = 0; i < accounts.length; i++) { await registry.sendCoins({ denom: DENOM, amount: '1000000', destinationAddress: accounts[i].address }, privateKey, fee); }