From 88028b70ee1015251c0d736eefee2eed1e78e5a0 Mon Sep 17 00:00:00 2001 From: alvrs Date: Thu, 19 Sep 2024 00:46:53 +0100 Subject: [PATCH] increase retry count --- packages/cli/src/deploy/waitForTransactions.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/cli/src/deploy/waitForTransactions.ts b/packages/cli/src/deploy/waitForTransactions.ts index 134e91d607c..81fbc588518 100644 --- a/packages/cli/src/deploy/waitForTransactions.ts +++ b/packages/cli/src/deploy/waitForTransactions.ts @@ -21,6 +21,7 @@ export async function waitForTransactions({ hash, pollingInterval: 100, retryDelay: ({ count }) => 2 ** count * 200, + retryCount: 8, }); if (receipt.status === "reverted") { throw new Error(`Transaction reverted: ${hash}`);