From f5a3ea6cbbbafd31534dee180ffb30a421df2182 Mon Sep 17 00:00:00 2001 From: Zahary Karadjov Date: Thu, 9 Mar 2023 22:28:46 +0200 Subject: [PATCH] Fix an accidentally wrong partial git stage --- beacon_chain/eth1/eth1_monitor.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beacon_chain/eth1/eth1_monitor.nim b/beacon_chain/eth1/eth1_monitor.nim index 67483255f..a2df0c367 100644 --- a/beacon_chain/eth1/eth1_monitor.nim +++ b/beacon_chain/eth1/eth1_monitor.nim @@ -301,7 +301,7 @@ proc trackEngineApiRequest(connection: ELConnection, # TODO `udata` is nil here. How come? # This forces us to create a GC cycle between the Future and the closure if request.completed: - engine_api_response_time.observe( + engine_api_request_duration_seconds.observe( float(milliseconds(Moment.now - startTime)) / 1000.0, [connection.engineUrl.url, requestName])