From 294d007f648db6784b6f93e48990228585f418b8 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Mon, 11 May 2020 11:14:48 +1000 Subject: [PATCH] Stop eth1 from always enabling (#1125) --- beacon_node/src/cli.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/beacon_node/src/cli.rs b/beacon_node/src/cli.rs index 8f42037f6..3e2d7a328 100644 --- a/beacon_node/src/cli.rs +++ b/beacon_node/src/cli.rs @@ -211,9 +211,8 @@ pub fn cli_app<'a, 'b>() -> App<'a, 'b> { Arg::with_name("eth1-endpoint") .long("eth1-endpoint") .value_name("HTTP-ENDPOINT") - .help("Specifies the server for a web3 connection to the Eth1 chain. Also enables the --eth1 flag.") + .help("Specifies the server for a web3 connection to the Eth1 chain. Also enables the --eth1 flag. Defaults to http://127.0.0.1:8545.") .takes_value(true) - .default_value("http://127.0.0.1:8545") ) .arg( Arg::with_name("slots-per-restore-point")