chore: delete duplicated node args types (#6169)

This commit is contained in:
Dan Cline
2024-01-22 17:40:15 -05:00
committed by GitHub
parent 021d236f8c
commit 7e982ef3ad
30 changed files with 115 additions and 4463 deletions

View File

@ -17,10 +17,15 @@ use reth_primitives::ChainSpec;
use reth_tracing::FileWorkerGuard;
use std::sync::Arc;
pub mod components;
pub mod config;
/// Re-export of the `reth_node_core` types specifically in the `cli` module.
///
/// This is re-exported because the types in `reth_node_core::cli` originally existed in
/// `reth::cli` but were moved to the `reth_node_core` crate. This re-export avoids a breaking
/// change.
pub use crate::core::cli::*;
pub mod db_type;
pub mod ext;
/// The main reth cli interface.
///
/// This is the entrypoint to the executable.