Files
nanoreth/bin/reth/src/args/mod.rs
Aditya Pandey c190d0e69b Configure Gas Price Oracle with CLI arguments (#2664)
Co-authored-by: Aditya Pandey <aditya.p@Aditya-P.local>
Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
2023-05-15 11:46:05 +02:00

28 lines
733 B
Rust

//! Parameters for configuring the rpc more granularity via CLI
/// NetworkArg struct for configuring the network
mod network_args;
pub use network_args::{DiscoveryArgs, NetworkArgs};
/// RpcServerArg struct for configuring the RPC
mod rpc_server_args;
pub use rpc_server_args::RpcServerArgs;
/// DebugArgs struct for debugging purposes
mod debug_args;
pub use debug_args::DebugArgs;
mod secret_key;
pub use secret_key::{get_secret_key, SecretKeyError};
/// MinerArgs struct for configuring the miner
mod payload_build_args;
pub use payload_build_args::PayloadBuilderArgs;
/// Stage related arguments
mod stage_args;
pub use stage_args::StageEnum;
mod gas_price_oracle_args;
pub use gas_price_oracle_args::GasPriceOracleArgs;