From 75ac21604f7f3d10b0d323a216f3f2cc4c00dc0f Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Thu, 29 Aug 2019 15:03:52 +1000 Subject: [PATCH] Add long minutes CLI flag --- beacon_node/src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/beacon_node/src/main.rs b/beacon_node/src/main.rs index 5bfb71215..8ab20a481 100644 --- a/beacon_node/src/main.rs +++ b/beacon_node/src/main.rs @@ -265,6 +265,7 @@ fn main() { .required(true) .help("The number of validators in the genesis state")) .arg(Arg::with_name("minutes") + .long("minutes") .short("m") .value_name("MINUTES") .required(true)