From b96ece4f8463a8689e6e7898ab754b776fe23da0 Mon Sep 17 00:00:00 2001 From: Aman Sanghi Date: Wed, 10 Jul 2024 08:07:19 +0530 Subject: [PATCH] Changes based on PR comments --- internal/ethapi/api.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index 2bf7075941..a342b92812 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -54,8 +54,8 @@ import ( var errBlobTxNotSupported = errors.New("signing blob transactions not supported") var ( - gasUsedEthEstimateGasGauge = metrics.NewRegisteredGauge("api/eth_call/gas", nil) - gasUsedEthCallGauge = metrics.NewRegisteredGauge("api/eth_estimateGas/gas", nil) + gasUsedEthEstimateGasGauge = metrics.NewRegisteredCounter("rpc/gas_used/eth_estimate", nil) + gasUsedEthCallGauge = metrics.NewRegisteredCounter("rpc/gas_used/eth_call", nil) ) func fallbackClientFor(b Backend, err error) types.FallbackClient {