-
Notifications
You must be signed in to change notification settings - Fork 93
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
Reth v1.1.1 #255
Reth v1.1.1 #255
Conversation
live_builder/building/mod done
root_hash_task_pool removed.
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.
LGTM after comments if we're happy with its staging performance.
// @Pending: Eval replacing Bytes for ArrayVec to avoid the copy or dig deeper into low-level. | ||
children[index as usize] = Some(Bytes::copy_from_slice(rlp_data.as_ref())); |
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 we bench it?
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.
This is for @dvush
crates/rbuilder/src/building/builders/parallel_builder/simulation_cache.rs
Outdated
Show resolved
Hide resolved
.map(|tx| tx.envelope_encoded().to_vec().into()) | ||
.map(|tx| { | ||
let mut buf = Vec::new(); | ||
tx.encode_2718(&mut buf); | ||
buf.into() | ||
}) |
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.
Do we have a way to ensure the new encoding is correct?
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.
Not that I remember. We trust on reth tests.
tx.tx.tx.value() | ||
tx.tx.value() |
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.
😁
crates/transaction-pool-bundle-ext/bundle_pool_ops/rbuilder/Cargo.toml
Outdated
Show resolved
Hide resolved
…ion_cache.rs Co-authored-by: liamaharon <[email protected]>
📝 Summary
💡 Motivation and Context
✅ I have completed the following steps:
make lint
make test