This commit is contained in:
joshieDo
2025-10-24 13:00:17 +01:00
parent 3e94cc3c72
commit da45131269
3 changed files with 1 additions and 6 deletions

2
Cargo.lock generated
View File

@@ -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",

View File

@@ -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;

View File

@@ -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