From 3046987f88975893a3fbe19ea26880bc7b79a670 Mon Sep 17 00:00:00 2001 From: Urix <43704209+uri-99@users.noreply.github.com> Date: Mon, 20 Jan 2025 17:23:15 -0300 Subject: [PATCH] fix: remove required=true from PrivateKeyType --- batcher/aligned/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/batcher/aligned/src/main.rs b/batcher/aligned/src/main.rs index 62e6e0490..10853f4c8 100644 --- a/batcher/aligned/src/main.rs +++ b/batcher/aligned/src/main.rs @@ -226,7 +226,7 @@ pub struct GetUserNonceArgs { } #[derive(Args, Debug)] -#[group(required = true, multiple = false)] +#[group(multiple = false)] pub struct PrivateKeyType { #[arg(name = "path_to_keystore", long = "keystore_path")] keystore_path: Option,