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
in addition to tracking the the executed block, we also need to be able to serve the state at a canonical block, which works like:
reth/crates/engine/tree/src/tree/mod.rs
Lines 575 to 589 in 8c8702b
this we need keep in the State so we can easily serve it
State
Lines 1015 to 1017 in 8c8702b
this will be accessed a lot concurrently, so we need to be careful we keep the mapping right, which is updated when we flushed to disk.
This can now be integrated into the Blockchainprovider2 state_by calls
The text was updated successfully, but these errors were encountered:
fgimenez
Successfully merging a pull request may close this issue.
in addition to tracking the the executed block, we also need to be able to serve the state at a canonical block, which works like:
reth/crates/engine/tree/src/tree/mod.rs
Lines 575 to 589 in 8c8702b
this we need keep in the
State
so we can easily serve itreth/crates/engine/tree/src/tree/mod.rs
Lines 1015 to 1017 in 8c8702b
this will be accessed a lot concurrently, so we need to be careful we keep the mapping right, which is updated when we flushed to disk.
This can now be integrated into the Blockchainprovider2 state_by calls
The text was updated successfully, but these errors were encountered: