Skip to content
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
danburck committed Jul 29, 2022
1 parent a2e79fe commit 744093b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpc/namespaces/ethereum/eth/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import (

"github.com/evmos/ethermint/crypto/hd"
"github.com/evmos/ethermint/rpc/backend"
"github.com/evmos/ethermint/rpc/types"

rpctypes "github.com/evmos/ethermint/rpc/types"
ethermint "github.com/evmos/ethermint/types"
evmtypes "github.com/evmos/ethermint/x/evm/types"
Expand Down Expand Up @@ -607,7 +607,7 @@ func (e *PublicAPI) Resend(ctx context.Context, args evmtypes.TransactionArgs, g
if gasLimit != nil {
gas = uint64(*gasLimit)
}
if err := types.CheckTxFee(price, gas, e.backend.RPCTxFeeCap()); err != nil {
if err := rpctypes.CheckTxFee(price, gas, e.backend.RPCTxFeeCap()); err != nil {
return common.Hash{}, err
}

Expand Down

0 comments on commit 744093b

Please sign in to comment.