diff --git a/account_manager/src/validator/create.rs b/account_manager/src/validator/create.rs index c75669d80cf..cfe4d8e94ad 100644 --- a/account_manager/src/validator/create.rs +++ b/account_manager/src/validator/create.rs @@ -122,6 +122,7 @@ pub fn cli_app() -> Command { .long(STDIN_INPUTS_FLAG) .help("If present, read all user inputs from stdin instead of tty.") .display_order(0) + .action(ArgAction::SetTrue) ) } diff --git a/account_manager/src/validator/exit.rs b/account_manager/src/validator/exit.rs index a375a290e06..277d2ae8eca 100644 --- a/account_manager/src/validator/exit.rs +++ b/account_manager/src/validator/exit.rs @@ -62,6 +62,8 @@ pub fn cli_app() -> Command { Arg::new(NO_WAIT) .long(NO_WAIT) .help("Exits after publishing the voluntary exit without waiting for confirmation that the exit was included in the beacon chain") + .action(ArgAction::SetTrue) + .help_heading(FLAG_HEADER) .display_order(0) ) .arg( @@ -69,6 +71,8 @@ pub fn cli_app() -> Command { .long(NO_CONFIRMATION) .help("Exits without prompting for confirmation that you understand the implications of a voluntary exit. This should be used with caution") .display_order(0) + .action(ArgAction::SetTrue) + .help_heading(FLAG_HEADER) ) .arg( Arg::new(STDIN_INPUTS_FLAG)