Skip to content

Commit

Permalink
feat(engine): proof fetching on state update for StateRootTask
Browse files Browse the repository at this point in the history
  • Loading branch information
fgimenez committed Nov 18, 2024
1 parent 1d2934b commit 3b04efb
Show file tree
Hide file tree
Showing 5 changed files with 376 additions and 56 deletions.
3 changes: 3 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 23 additions & 18 deletions crates/engine/tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ reth-chainspec.workspace = true
reth-engine-primitives.workspace = true
reth-errors.workspace = true
reth-evm.workspace = true
reth-execution-errors.workspace = true
reth-network-p2p.workspace = true
reth-payload-builder.workspace = true
reth-payload-builder-primitives.workspace = true
Expand All @@ -33,13 +34,15 @@ reth-revm.workspace = true
reth-stages-api.workspace = true
reth-tasks.workspace = true
reth-trie.workspace = true
reth-trie-db.workspace = true
reth-trie-parallel.workspace = true

# alloy
alloy-primitives.workspace = true
alloy-eips.workspace = true
alloy-rpc-types-engine.workspace = true
alloy-consensus.workspace = true
alloy-rlp.workspace = true

revm-primitives.workspace = true

Expand All @@ -53,6 +56,7 @@ metrics.workspace = true
reth-metrics = { workspace = true, features = ["common"] }

# misc
rayon.workspace = true
tracing.workspace = true

# optional deps for test-utils
Expand Down Expand Up @@ -89,22 +93,23 @@ harness = false

[features]
test-utils = [
"reth-db/test-utils",
"reth-chain-state/test-utils",
"reth-network-p2p/test-utils",
"reth-prune-types",
"reth-stages/test-utils",
"reth-static-file",
"reth-tracing",
"reth-blockchain-tree/test-utils",
"reth-chainspec/test-utils",
"reth-consensus/test-utils",
"reth-evm/test-utils",
"reth-payload-builder/test-utils",
"reth-primitives/test-utils",
"reth-revm/test-utils",
"reth-stages-api/test-utils",
"reth-provider/test-utils",
"reth-trie/test-utils",
"reth-prune-types?/test-utils",
"reth-db/test-utils",
"reth-chain-state/test-utils",
"reth-network-p2p/test-utils",
"reth-prune-types",
"reth-stages/test-utils",
"reth-static-file",
"reth-tracing",
"reth-blockchain-tree/test-utils",
"reth-chainspec/test-utils",
"reth-consensus/test-utils",
"reth-evm/test-utils",
"reth-payload-builder/test-utils",
"reth-primitives/test-utils",
"reth-revm/test-utils",
"reth-stages-api/test-utils",
"reth-provider/test-utils",
"reth-trie/test-utils",
"reth-prune-types?/test-utils",
"reth-trie-db/test-utils"
]
Loading

0 comments on commit 3b04efb

Please sign in to comment.