From 005ca6656ccc97951ff6f94be31a58aa71a49389 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Thu, 5 Oct 2023 12:45:53 +0200 Subject: [PATCH] chore: make unit type default (#4916) --- bin/reth/src/cli/ext.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/reth/src/cli/ext.rs b/bin/reth/src/cli/ext.rs index eea3695e2e..f8905d0376 100644 --- a/bin/reth/src/cli/ext.rs +++ b/bin/reth/src/cli/ext.rs @@ -135,7 +135,7 @@ impl RethNodeCommandConfig for () {} /// Note: This type must be manually filled with a [RethNodeCommandConfig] manually before executing /// the [NodeCommand](crate::node::NodeCommand). #[derive(Debug, Clone, Copy, Default, Args)] -pub struct NoArgs { +pub struct NoArgs { #[clap(skip)] inner: Option, }