-
Notifications
You must be signed in to change notification settings - Fork 23
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
Bug: Only Engine API server modules are initialized in the Binary #63
Comments
For visibility, I am currently working on a fix that merges and initializes all RPC modules and will open a PR once I have finished writing additional tests. |
|
@avalonche You can verify this by simply logging module.method_names().for_each(|name| {
info!("Registered Method {}", name);
}) In the binary. The |
The only RPC methods actually initialized in
rollup-boost
is from the Engine API server here.I noticed this while testing #61 on a local Devnet.
On
main
this meanseth_sendRawTransaction
is not a registered RPC method on the Server.The text was updated successfully, but these errors were encountered: