From 2619c4f631bad00c653a33617d4ad5f014ad4b1c Mon Sep 17 00:00:00 2001 From: Chris Wessels Date: Thu, 19 Dec 2024 17:42:16 +0000 Subject: [PATCH] fix(indexer-agent): gasIncreaseTimeout startup log --- packages/indexer-agent/src/commands/start.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/indexer-agent/src/commands/start.ts b/packages/indexer-agent/src/commands/start.ts index 92a12f1b5..dc7b5f44c 100644 --- a/packages/indexer-agent/src/commands/start.ts +++ b/packages/indexer-agent/src/commands/start.ts @@ -685,8 +685,8 @@ export function reviewArgumentsForWarnings(argv: AgentOptions, logger: Logger) { if (gasIncreaseTimeout < advisedGasIncreaseTimeout) { logger.warn( `Gas increase timeout is set to less than ${ - advisedGasIncreaseTimeout - } milliseconds. This may lead to high gas usage`, + advisedGasIncreaseTimeout / 1000 + } seconds. This may lead to high gas usage`, { gasIncreaseTimeout: gasIncreaseTimeout }, ) }