Skip to content

Commit

Permalink
Merge pull request #613 from tablelandnetwork/bcalza/newethlogs
Browse files Browse the repository at this point in the history
adds new eth log message check
  • Loading branch information
brunocalza committed Feb 25, 2024
2 parents e037c20 + 230a840 commit ae77c65
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/eventprocessor/eventfeed/impl/eventfeed.go
Expand Up @@ -180,6 +180,7 @@ func (ef *EventFeed) Start(
strings.Contains(err.Error(), "eth_getLogs and eth_newFilter are limited to a 10000 blocks range") ||
strings.Contains(err.Error(), "range between to and from blocks is too large") ||
strings.Contains(err.Error(), "getMultipleAccounts, eth_getLogs, and eth_newFilter are limited to a 5 range") ||
strings.Contains(err.Error(), "eth_getLogs is limited to a 5 range") ||
strings.Contains(err.Error(), "block range is too wide") {
ef.maxBlocksFetchSize = ef.maxBlocksFetchSize * 80 / 100
} else {
Expand Down

0 comments on commit ae77c65

Please sign in to comment.