Skip to content

Commit 93e47b2

Browse files
committed
Fix signature flag
1 parent e5d16ec commit 93e47b2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

validator_manager/src/exit_validators.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ pub fn cli_app() -> Command {
7171
.long(SIGNATURE_FLAG)
7272
.help("Display the signature of the voluntary exit.")
7373
.help_heading(FLAG_HEADER)
74-
.action(ArgAction::SetTrue)
74+
.value_parser(["true", "false"])
75+
.action(ArgAction::Set)
7576
.display_order(0),
7677
)
7778
}

0 commit comments

Comments
 (0)