all: rename go module to evmos/ethermint (#1137)

This commit is contained in:
Federico Kunze Küllmer
2022-06-19 11:43:41 +02:00
committed by GitHub
parent a8d3805ddf
commit ec8e93b319
190 changed files with 1137 additions and 1506 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ package testutil
import (
sdk "github.com/cosmos/cosmos-sdk/types"
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
evmtypes "github.com/tharsis/ethermint/x/evm/types"
evmtypes "github.com/evmos/ethermint/x/evm/types"
)
// FundAccount is a utility function that funds an account by minting and
+6 -6
View File
@@ -48,13 +48,13 @@ import (
"github.com/cosmos/cosmos-sdk/x/genutil"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/tharsis/ethermint/crypto/hd"
"github.com/tharsis/ethermint/encoding"
"github.com/tharsis/ethermint/server/config"
ethermint "github.com/tharsis/ethermint/types"
evmtypes "github.com/tharsis/ethermint/x/evm/types"
"github.com/evmos/ethermint/crypto/hd"
"github.com/evmos/ethermint/encoding"
"github.com/evmos/ethermint/server/config"
ethermint "github.com/evmos/ethermint/types"
evmtypes "github.com/evmos/ethermint/x/evm/types"
"github.com/tharsis/ethermint/app"
"github.com/evmos/ethermint/app"
)
// package-wide network lock to only allow one test network at a time
+1 -1
View File
@@ -9,7 +9,7 @@ import (
"github.com/stretchr/testify/suite"
"github.com/tharsis/ethermint/testutil/network"
"github.com/evmos/ethermint/testutil/network"
)
type IntegrationTestSuite struct {
+2 -2
View File
@@ -28,8 +28,8 @@ import (
mintypes "github.com/cosmos/cosmos-sdk/x/mint/types"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/tharsis/ethermint/server"
evmtypes "github.com/tharsis/ethermint/x/evm/types"
"github.com/evmos/ethermint/server"
evmtypes "github.com/evmos/ethermint/x/evm/types"
)
func startInProcess(cfg Config, val *Validator) error {