-
Notifications
You must be signed in to change notification settings - Fork 87
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
Rbuilder-inprocess receive txns from Reth #295
base: develop
Are you sure you want to change the base?
Conversation
Benchmark results for
|
Date (UTC) | 2024-12-18T16:24:49+00:00 |
Commit | 9060ba6415e1da082724a2eee4640f8df52ae45f |
Base SHA | 2e4c1ab8bc46e6110ef58fe39ac46160f6a7abbe |
Significant changes
Benchmark | Mean | Status |
---|---|---|
gather_nodes_account_trie | 2.62% | Performance has degraded. |
ptr_trie_insert_only_3000 | 2.60% | Performance has degraded. |
gather_nodes_big_changes_account | 2.44% | Performance has degraded. |
MEV-Boost SubmitBlock serialization/JSON encoding | -36.63% | Performance has improved. |
gather_nodes_empty_account | -25.15% | Performance has improved. |
let ipc_path = if ctx.config().rpc.is_ipc_enabled() { | ||
Some(PathBuf::from(ctx.config().rpc.ipc_path())) | ||
} else { | ||
None | ||
}; |
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.
Can you move this insde spawn_rbuilder or as a func to avoid more copy/paste?
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.
Moved it to draft, it did not show the improvement I was expecting. I have to debug more.
π Summary
Fixes #293
This PR overrides the IPC rbuilder config with the one used by the Reth node.
β I have completed the following steps:
make lint
make test