-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
eth_getLogs produces lots of WARN log output for non-FEVM events #11718
Comments
rvagg
added a commit
that referenced
this issue
Mar 19, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
rjan90
pushed a commit
that referenced
this issue
Mar 19, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
rjan90
pushed a commit
that referenced
this issue
Mar 20, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
rjan90
pushed a commit
that referenced
this issue
Mar 21, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
rjan90
pushed a commit
that referenced
this issue
Mar 21, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
rjan90
pushed a commit
that referenced
this issue
Mar 22, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
LexLuthr
pushed a commit
that referenced
this issue
Mar 26, 2024
Codec != Raw likely means built-in actor events, which we can safely skip, so avoid filling up logs with warnings for every built-in actor event that comes past this point. Fixes: #11718
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This bit of code worked fine when there were only FEVM events:
lotus/node/impl/full/eth_events.go
Lines 43 to 84 in bfb3602
But post nv22, anyone not filtering events down to specifically FEVM events, such as block explorers or anyone else capturing general logs, will trigger a lot of logs because our builtin actor events don't match these criteria, starting with the
Codec
not beingRaw
.I think that we probably don't need to log these at all, or just drop down to DEBUG.
The text was updated successfully, but these errors were encountered: