diff --git a/validator_manager/src/lib.rs b/validator_manager/src/lib.rs index 0571cd7f4c..c5f1a731c7 100644 --- a/validator_manager/src/lib.rs +++ b/validator_manager/src/lib.rs @@ -64,6 +64,7 @@ pub fn run<'a, T: EthSpec>( (validators::CMD, Some(matches)) => { validators::cli_run::(matches, &spec, dump_config).await } + ("", _) => Err("No command supplied. See --help.".to_string()), (unknown, _) => Err(format!( "{} is not a valid {} command. See --help.", unknown, CMD