From 9bd0e13d9d2ab8499c87b5c3de0dc27feed2c5bf Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 27 Nov 2019 18:23:37 +1100 Subject: [PATCH] Add log when waiting for genesis --- beacon_node/client/src/builder.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/beacon_node/client/src/builder.rs b/beacon_node/client/src/builder.rs index 0cfe3c741b..4c1e682ab2 100644 --- a/beacon_node/client/src/builder.rs +++ b/beacon_node/client/src/builder.rs @@ -188,6 +188,12 @@ where Box::new(future) } ClientGenesis::DepositContract => { + info!( + context.log, + "Waiting for eth2 genesis from eth1"; + "eth1_node" => &config.endpoint + ); + let genesis_service = Eth1GenesisService::new( // Some of the configuration options for `Eth1Config` are // hard-coded when listening for genesis from the deposit contract.