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
BuiltPayload
I would be beneficial to also retrieve the ExecutedBlock from a resolved payload so that we can immediately insert this into the tree ref #10158
ExecutedBlock
this can be achieved by extending the trait for the BuiltPayload:
reth/crates/payload/primitives/src/traits.rs
Line 17 in 4107df8
so that it returns an Option for ExecutedBlock, this should be an option because the payload builder can be anywhere (e.g. a different process)
Option
the main loop can then subscribe to resolved payloads via:
reth/crates/payload/builder/src/service.rs
Lines 228 to 229 in 4107df8
reth/crates/payload/builder/src/events.rs
Lines 14 to 17 in 4107df8
and if it has an ExecutedBlock we can insert this directly into the tree (#10158)
reth/crates/ethereum/engine-primitives/src/payload.rs
Line 28 in 4107df8
reth/crates/optimism/payload/src/payload.rs
Line 166 in 4107df8
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I would be beneficial to also retrieve the
ExecutedBlock
from a resolved payload so that we can immediately insert this into the tree ref #10158this can be achieved by extending the trait for the
BuiltPayload
:reth/crates/payload/primitives/src/traits.rs
Line 17 in 4107df8
so that it returns an
Option
forExecutedBlock
, this should be an option because the payload builder can be anywhere (e.g. a different process)the main loop can then subscribe to resolved payloads via:
reth/crates/payload/builder/src/service.rs
Lines 228 to 229 in 4107df8
reth/crates/payload/builder/src/events.rs
Lines 14 to 17 in 4107df8
and if it has an
ExecutedBlock
we can insert this directly into the tree (#10158)TODO
reth/crates/ethereum/engine-primitives/src/payload.rs
Line 28 in 4107df8
reth/crates/optimism/payload/src/payload.rs
Line 166 in 4107df8
ExecutedBlock
The text was updated successfully, but these errors were encountered: