-
Notifications
You must be signed in to change notification settings - Fork 140
Rebase on reth with pending pool fix #593
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
base: develop
Are you sure you want to change the base?
Rebase on reth with pending pool fix #593
Conversation
44129a3
to
87d82f0
Compare
6d56b43
to
386b427
Compare
Blocker for full integration test: paradigmxyz/reth#15973 |
{ | ||
type PayloadBuilder = OpPayloadBuilderVanilla<Pool, Node::Provider>; | ||
|
||
async fn build_payload_builder( | ||
self, | ||
ctx: &BuilderContext<Node>, | ||
pool: Pool, | ||
_evm_config: Evm, |
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.
why add evm config if it is not used?
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.
Because they changed the method signature in the new reth, and we implement reth trait
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.
what did they add it for? should our builder use the evm config from the arg as well?
let block_hash = generator.generate_block().await?; | ||
|
||
// TODO: uncomment once reth issue is addressed https://github.com/paradigmxyz/reth/issues/15973 |
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 affect pending / queued pool metrics in reth as well?
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.
metrics are fine (checked it)
Seems like only issue is on rpc call side
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.
okay, turned out that issue was with the test itself, found that problem and implementing the fix
3b784b0
to
89a10ed
Compare
π Summary
Use new reth version
Bump rust to 1.86
π‘ Motivation and Context
β I have completed the following steps:
make lint
make test