-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
BCFR-1099 sei custom log index #15858
Conversation
AER Report: CI Core ran successfully ✅AER Report: Operator UI CI ran successfully ✅ |
Quality Gate passedIssues Measures |
if el.Method == "eth_getLogs" { | ||
r.rpcLog.Critical("evmclient.BatchCallContext: eth_getLogs is not supported") | ||
return errors.New("evmclient.BatchCallContext: eth_getLogs is not supported") | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this mean we can't support LogPoller / CCIP on AStar?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, nevermind... I forgot we only use batch requests with eth_getBlockByNumber
. Still, very strange that AStar wouldn't support this! We have thought about changing the eth_getLogs
requests to a batched request, I guess if we do that we'll have to fall back to the older method on AStar 🤔
Added custom calculation of log's index to match LogPoller's expectations