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
+2 -2
View File
@@ -6,8 +6,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tharsis/ethermint/x/feemarket/migrations/v010/types"
v09types "github.com/tharsis/ethermint/x/feemarket/migrations/v09/types"
"github.com/evmos/ethermint/x/feemarket/migrations/v010/types"
v09types "github.com/evmos/ethermint/x/feemarket/migrations/v09/types"
)
// KeyPrefixBaseFeeV1 is the base fee key prefix used in version 1
+7 -7
View File
@@ -10,14 +10,14 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tharsis/ethermint/encoding"
"github.com/evmos/ethermint/encoding"
"github.com/tharsis/ethermint/app"
feemarketkeeper "github.com/tharsis/ethermint/x/feemarket/keeper"
v010 "github.com/tharsis/ethermint/x/feemarket/migrations/v010"
v09types "github.com/tharsis/ethermint/x/feemarket/migrations/v09/types"
"github.com/tharsis/ethermint/x/feemarket/types"
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"
"github.com/evmos/ethermint/app"
feemarketkeeper "github.com/evmos/ethermint/x/feemarket/keeper"
v010 "github.com/evmos/ethermint/x/feemarket/migrations/v010"
v09types "github.com/evmos/ethermint/x/feemarket/migrations/v09/types"
"github.com/evmos/ethermint/x/feemarket/types"
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"
)
func TestMigrateStore(t *testing.T) {
+2 -2
View File
@@ -4,8 +4,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
v010types "github.com/tharsis/ethermint/x/feemarket/migrations/v010/types"
"github.com/tharsis/ethermint/x/feemarket/types"
v010types "github.com/evmos/ethermint/x/feemarket/migrations/v010/types"
"github.com/evmos/ethermint/x/feemarket/types"
)
// MigrateStore adds the MinGasPrice param with a value of 0
+6 -6
View File
@@ -10,13 +10,13 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
"github.com/tharsis/ethermint/encoding"
"github.com/evmos/ethermint/encoding"
"github.com/tharsis/ethermint/app"
v010types "github.com/tharsis/ethermint/x/feemarket/migrations/v010/types"
v011 "github.com/tharsis/ethermint/x/feemarket/migrations/v011"
"github.com/tharsis/ethermint/x/feemarket/types"
feemarkettypes "github.com/tharsis/ethermint/x/feemarket/types"
"github.com/evmos/ethermint/app"
v010types "github.com/evmos/ethermint/x/feemarket/migrations/v010/types"
v011 "github.com/evmos/ethermint/x/feemarket/migrations/v011"
"github.com/evmos/ethermint/x/feemarket/types"
feemarkettypes "github.com/evmos/ethermint/x/feemarket/types"
)
func init() {