fix(storage): dont skip consistency checks for op-mainnet if using minimal bootstrap (#11099)

This commit is contained in:
joshieDo
2024-09-24 17:10:44 +02:00
committed by GitHub
parent f2082e0411
commit 4da5f1f388
5 changed files with 30 additions and 11 deletions

View File

@ -40,6 +40,9 @@ alloy-primitives.workspace = true
alloy-rpc-types-engine.workspace = true
revm.workspace = true
# optimism
reth-optimism-primitives = { workspace = true, optional = true }
# async
tokio = { workspace = true, features = ["sync", "macros", "rt-multi-thread"] }
@ -79,7 +82,7 @@ once_cell.workspace = true
eyre.workspace = true
[features]
optimism = ["reth-primitives/optimism", "reth-execution-types/optimism"]
optimism = ["reth-primitives/optimism", "reth-execution-types/optimism", "reth-optimism-primitives"]
serde = ["reth-execution-types/serde"]
test-utils = [
"reth-db/test-utils",