Skip to content

Commit

Permalink
fix(indexer-agent): gasIncreaseTimeout startup log
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswessels authored Dec 19, 2024
1 parent e1f5155 commit 2619c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/indexer-agent/src/commands/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 },
)
}
Expand Down

0 comments on commit 2619c4f

Please sign in to comment.