From 74ac85a75f600e7c0d232728b0c52cd8e4d5ece6 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Mon, 29 Aug 2022 23:11:09 +0300 Subject: [PATCH] Add reassuring log message upon connecting to the EL --- beacon_chain/eth1/eth1_monitor.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/beacon_chain/eth1/eth1_monitor.nim b/beacon_chain/eth1/eth1_monitor.nim index b9b5bc772..b1856c2d9 100644 --- a/beacon_chain/eth1/eth1_monitor.nim +++ b/beacon_chain/eth1/eth1_monitor.nim @@ -1135,6 +1135,7 @@ proc ensureDataProvider*(m: Eth1Monitor) {.async.} = m.depositContractAddress, web3Url, m.jwtSecret) if v.isErr(): raise (ref CatchableError)(msg: v.error()) + info "Established connection to execution layer", url = web3Url v.get() proc stop(m: Eth1Monitor) {.async.} =