From 280b6bf1b7b5ced9d79f7b3733843a2d19fbd8ce Mon Sep 17 00:00:00 2001 From: cakevm Date: Sat, 25 Jan 2025 11:31:12 +0100 Subject: [PATCH] chore: Changed visibility of Cli struct attributes to `pub` for op-reth (#13985) --- crates/optimism/cli/src/lib.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/crates/optimism/cli/src/lib.rs b/crates/optimism/cli/src/lib.rs index 5c3900a0e..e08426293 100644 --- a/crates/optimism/cli/src/lib.rs +++ b/crates/optimism/cli/src/lib.rs @@ -69,7 +69,7 @@ use reth_node_metrics::recorder::install_prometheus_recorder; pub struct Cli { /// The command to run #[command(subcommand)] - command: Commands, + pub command: Commands, /// The chain this node is running. /// @@ -82,7 +82,7 @@ pub struct Cli, + pub chain: Arc, /// Add a new instance of a node. /// @@ -98,10 +98,11 @@ pub struct Cli