Add reassuring log message upon connecting to the EL

This commit is contained in:
Zahary Karadjov 2022-08-29 23:11:09 +03:00
parent 2545d1d053
commit 74ac85a75f
No known key found for this signature in database
GPG Key ID: C1F42EAFF38D570F
1 changed files with 1 additions and 0 deletions

View File

@ -1135,6 +1135,7 @@ proc ensureDataProvider*(m: Eth1Monitor) {.async.} =
m.depositContractAddress, web3Url, m.jwtSecret) m.depositContractAddress, web3Url, m.jwtSecret)
if v.isErr(): if v.isErr():
raise (ref CatchableError)(msg: v.error()) raise (ref CatchableError)(msg: v.error())
info "Established connection to execution layer", url = web3Url
v.get() v.get()
proc stop(m: Eth1Monitor) {.async.} = proc stop(m: Eth1Monitor) {.async.} =