-
Notifications
You must be signed in to change notification settings - Fork 2k
chore!: Populate the headers field in the ExecutionWitness when calling debug_executionWitness
#15608
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
chore!: Populate the headers field in the ExecutionWitness when calling debug_executionWitness
#15608
Conversation
Cargo.toml
Outdated
| alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-contract = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-genesis = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-network-primitives = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-pubsub = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-client = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-admin = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-anvil = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-beacon = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-debug = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-eth = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-mev = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-trace = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-rpc-types-txpool = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } | ||
| alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "997e211" } |
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.
Using a patch of alloy: commit comes from the main branch here
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.
reverted this patch, now waiting for #15635 to merge
headers field in the ExecutionWitness when calling debug_executionWitness
| state, | ||
| codes: Default::default(), | ||
| keys: state_preimages, | ||
| headers: Vec::new(), |
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.
fyi @yash-atreya to keep the alloy bump pr simple, we can simply ini this with default and then send this pr as followup right away
…alling `debug_executionWitness` (paradigmxyz#15608) Co-authored-by: Matthias Seitz <[email protected]>
This PR modifies reth to populate the ancestor headers in the ExecutionWitness field. This field was added in this alloy PR