diff --git a/Cargo.lock b/Cargo.lock index 6519c399b6..c4ce21d075 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9812,7 +9812,6 @@ name = "reth-prune" version = "1.8.2" dependencies = [ "alloy-primitives", - "assert_matches", "metrics", "reth-config", "reth-db", @@ -9822,7 +9821,6 @@ dependencies = [ "reth-primitives-traits", "reth-provider", "reth-prune-types", - "reth-stages", "reth-testing-utils", "reth-tokio-util", "reth-tracing", diff --git a/crates/prune/db/src/receipts.rs b/crates/prune/db/src/receipts.rs index 5f4ff2329f..c040ccf17c 100644 --- a/crates/prune/db/src/receipts.rs +++ b/crates/prune/db/src/receipts.rs @@ -1,6 +1,6 @@ //! Common receipts pruning logic. //! -//! - [`crate::segments::user::Receipts`] is responsible for pruning receipts according to the +//! - [`crate::user::Receipts`] is responsible for pruning receipts according to the //! user-configured settings (for example, on a full node or with a custom prune config) use crate::db_ext::DbTxPruneExt; diff --git a/crates/prune/prune/Cargo.toml b/crates/prune/prune/Cargo.toml index 90f021e0c0..723c4acb79 100644 --- a/crates/prune/prune/Cargo.toml +++ b/crates/prune/prune/Cargo.toml @@ -33,9 +33,6 @@ tokio.workspace = true [dev-dependencies] # reth reth-db = { workspace = true, features = ["test-utils"] } -reth-stages = { workspace = true, features = ["test-utils"] } reth-primitives-traits = { workspace = true, features = ["arbitrary"] } reth-testing-utils.workspace = true reth-tracing.workspace = true - -assert_matches.workspace = true