From 29369ed65ab6a01a0b8c1a05b4f6b9710dd8e44b Mon Sep 17 00:00:00 2001 From: PhilWindle <60546371+PhilWindle@users.noreply.github.com> Date: Fri, 6 Sep 2024 19:50:30 +0100 Subject: [PATCH] fix: Increase timeout for Sepolia mining (#8430) This Pr simply increases the wait timeout on Sepolia transactions to give them a chance to settle. --- .../src/public-testnet/e2e_public_testnet_transfer.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/yarn-project/end-to-end/src/public-testnet/e2e_public_testnet_transfer.test.ts b/yarn-project/end-to-end/src/public-testnet/e2e_public_testnet_transfer.test.ts index 8c3828f6497..1ecc615eed5 100644 --- a/yarn-project/end-to-end/src/public-testnet/e2e_public_testnet_transfer.test.ts +++ b/yarn-project/end-to-end/src/public-testnet/e2e_public_testnet_transfer.test.ts @@ -64,6 +64,7 @@ describe(`deploys and transfers a private only token`, () => { interval: 0.1, proven: true, provenTimeout: 600, + timeout: 300, }); logger.info(`Accounts deployed, deploying token.`); @@ -86,6 +87,7 @@ describe(`deploys and transfers a private only token`, () => { .deployed({ proven: true, provenTimeout: 600, + timeout: 300, }); logger.info(`Performing transfer.`); @@ -93,7 +95,7 @@ describe(`deploys and transfers a private only token`, () => { await token.methods .transfer(transferValue, deployerWallet.getAddress(), recipientWallet.getAddress(), deployerWallet.getAddress()) .send() - .wait({ proven: true, provenTimeout: 600 }); + .wait({ proven: true, provenTimeout: 600, timeout: 300 }); logger.info(`Transfer completed`);