diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go index f16cc27ce..52c93af7f 100644 --- a/internal/ethapi/api.go +++ b/internal/ethapi/api.go @@ -63,7 +63,7 @@ func NewPublicEthereumAPI(b Backend) *PublicEthereumAPI { return &PublicEthereumAPI{b} } -// GasPrice returns 1 gwei always. Rationale: https://github.com/ethereum-optimism/roadmap/issues/715 +// GasPrice always returns 1 gwei. See `DoEstimateGas` below for context. func (s *PublicEthereumAPI) GasPrice(ctx context.Context) (*hexutil.Big, error) { return (*hexutil.Big)(big.NewInt(defaultGasPrice)), nil }