Skip to content

Commit

Permalink
Changes based on PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
amsanghi committed Jul 10, 2024
1 parent 757508b commit b96ece4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/ethapi/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit b96ece4

Please sign in to comment.