This commit is contained in:
Mac L
2024-04-26 12:46:52 +10:00
parent 9897626f13
commit 4c5dd6716f
2 changed files with 19 additions and 13 deletions

View File

@@ -1,4 +1,6 @@
use validator_client::{config::DEFAULT_WEB3SIGNER_KEEP_ALIVE, ApiTopic, BeaconNodeSyncDistanceTiers, Config}; use validator_client::{
config::DEFAULT_WEB3SIGNER_KEEP_ALIVE, ApiTopic, BeaconNodeSyncDistanceTiers, Config,
};
use crate::exec::CommandLineTestExec; use crate::exec::CommandLineTestExec;
use bls::{Keypair, PublicKeyBytes}; use bls::{Keypair, PublicKeyBytes};

View File

@@ -120,14 +120,18 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> {
.short("c") .short("c")
.long("continue_after_checks") .long("continue_after_checks")
.takes_value(false) .takes_value(false)
.help("Number of validators per client")) .help("Number of validators per client"),
.arg(Arg::with_name("speed_up_factor") )
.arg(
Arg::with_name("speed_up_factor")
.short("s") .short("s")
.long("speed_up_factor") .long("speed_up_factor")
.takes_value(true) .takes_value(true)
.default_value("3") .default_value("3")
.help("Speed up factor. Please use a divisor of 12.")) .help("Speed up factor. Please use a divisor of 12."),
.arg(Arg::with_name("continue_after_checks") )
.arg(
Arg::with_name("continue_after_checks")
.short("c") .short("c")
.long("continue_after_checks") .long("continue_after_checks")
.takes_value(false) .takes_value(false)