chore: move TestConensus to reth-consensus (#7813)

This commit is contained in:
Matthias Seitz
2024-04-23 14:42:51 +02:00
committed by GitHub
parent 672e4c512c
commit 9fd35f948c
19 changed files with 122 additions and 104 deletions

View File

@ -45,6 +45,7 @@ itertools.workspace = true
[dev-dependencies]
reth-db = { workspace = true, features = ["test-utils"] }
reth-consensus = { workspace = true, features = ["test-utils"] }
reth-interfaces = { workspace = true, features = ["test-utils"] }
reth-provider = { workspace = true, features = ["test-utils"] }
reth-tracing.workspace = true
@ -58,5 +59,5 @@ rand.workspace = true
tempfile.workspace = true
[features]
test-utils = ["dep:tempfile", "reth-db/test-utils", "reth-interfaces/test-utils"]
test-utils = ["dep:tempfile", "reth-db/test-utils", "reth-consensus/test-utils", "reth-interfaces/test-utils"]