We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
currently we use an header when we actually only need the number+hash+parenthash
for example:
reth/crates/net/p2p/src/headers/downloader.rs
Line 60 in cef7ec8
with upcoming generics, this would be harder to manage and we can use a new type, like
pub struct BlockAndParent { parent: Hash, block: BlockNumHash, }
name tbd
No response
The text was updated successfully, but these errors were encountered:
BlockWithParent
SyncTarget::Gap
Successfully merging a pull request may close this issue.
Describe the feature
currently we use an header when we actually only need the number+hash+parenthash
for example:
reth/crates/net/p2p/src/headers/downloader.rs
Line 60 in cef7ec8
with upcoming generics, this would be harder to manage and we can use a new type, like
name tbd
TODO
Additional context
No response
The text was updated successfully, but these errors were encountered: