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) {