From 096a7f46a874b81378ea51f8d3db99d728be43ec Mon Sep 17 00:00:00 2001 From: Alex Gartner Date: Tue, 25 Jun 2024 11:53:58 -0700 Subject: [PATCH] more lint fixes --- e2e/runner/runner.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/e2e/runner/runner.go b/e2e/runner/runner.go index 9d6f0fb386..a9c5c11d00 100644 --- a/e2e/runner/runner.go +++ b/e2e/runner/runner.go @@ -12,7 +12,6 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/ethereum/go-ethereum/accounts/abi/bind" - "github.com/ethereum/go-ethereum/common" ethcommon "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/ethclient" @@ -315,6 +314,6 @@ func (r *E2ERunner) requireTxSuccessful(receipt *ethtypes.Receipt, msgAndArgs .. } // EVMAddress is shorthand to get the EVM address of the account -func (r *E2ERunner) EVMAddress() common.Address { +func (r *E2ERunner) EVMAddress() ethcommon.Address { return r.Account.EVMAddress() }