From 17d092fc6173277db3e23e2b3d954585cb69c110 Mon Sep 17 00:00:00 2001 From: Rebustron Date: Wed, 26 Feb 2025 18:34:59 +0300 Subject: [PATCH] Update 404 link in `wait-for-event.ts` --- packages/cli/src/util/wait-for-event.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/util/wait-for-event.ts b/packages/cli/src/util/wait-for-event.ts index 0cc2451a8..edf65d974 100644 --- a/packages/cli/src/util/wait-for-event.ts +++ b/packages/cli/src/util/wait-for-event.ts @@ -62,7 +62,7 @@ export const waitForEvent = ({ eventName, abi, rpcUrl, expectedArgs }: WaitForEv // Set the timeout and store its id for cancellation // Docs say that the timeout should be max 3 minutes, but we add 2 extra minutes to be safe - // Ref: https://docs.optimism.io/builders/app-developers/bridging/messaging#for-l1-to-l2-transactions + // Ref: https://docs.optimism.io/app-developers/bridging/messaging#for-l1-to-l2-transactions const waitTime = 180000 + 120000; // 3 + 2 = 5 minutes timeoutId = setTimeout(onTimeout, waitTime); });