Skip to content

Commit

Permalink
ethmonitor: lower min interval clamp
Browse files Browse the repository at this point in the history
  • Loading branch information
pkieltyka committed Mar 16, 2024
1 parent e61a601 commit a1fcf88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethmonitor/ethmonitor.go
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ func (m *Monitor) monitor() error {
// minLoopInterval is time we monitor between cycles. It's a fast
// and fixed amount of time, as the internal method `fetchNextBlock`
// will actually use the poll interval while searching for the next block.
minLoopInterval := 100 * time.Millisecond
minLoopInterval := 5 * time.Millisecond

// adaptive poll interval
pollInterval := m.options.PollingInterval
Expand Down

0 comments on commit a1fcf88

Please sign in to comment.