From 630adc26aaf3b5cdd406307a5dd30b24bc03a392 Mon Sep 17 00:00:00 2001 From: Paul <108695806+pxrl@users.noreply.github.com> Date: Tue, 24 Sep 2024 19:32:29 +0200 Subject: [PATCH] Revert unnecessary --- src/relayer/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/relayer/index.ts b/src/relayer/index.ts index 9476a3bf4..59c14549c 100644 --- a/src/relayer/index.ts +++ b/src/relayer/index.ts @@ -61,7 +61,7 @@ export async function runRelayer(_logger: winston.Logger, baseSigner: Signer): P const ready = await relayer.update(); const activeRelayer = redis ? await redis.get(botIdentifier) : undefined; - // If there is another active relayer, allow up to 20 update cycles for this instance to be ready, + // If there is another active relayer, allow up to 120 seconds for this instance to be ready, // then proceed unconditionally to protect against any RPC outages blocking the relayer. if (!ready && activeRelayer) { if (run * pollingDelay < 120) {