diff --git a/x/ccv/provider/keeper/migration.go b/x/ccv/provider/keeper/migration.go index 815e496494..3f04a49ef6 100644 --- a/x/ccv/provider/keeper/migration.go +++ b/x/ccv/provider/keeper/migration.go @@ -5,6 +5,7 @@ import ( sdktypes "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" + providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" ccvtypes "github.com/cosmos/interchain-security/v3/x/ccv/types" ) @@ -37,7 +38,6 @@ func (k Keeper) MigrateQueuedPackets(ctx sdktypes.Context) error { k.DeleteThrottledPacketDataForConsumer(ctx, consumer.ChainId) } return nil - } // Pending packet data type enum, used to encode the type of packet data stored at each entry in the mutual queue. diff --git a/x/ccv/provider/keeper/migration_test.go b/x/ccv/provider/keeper/migration_test.go index 14f15f018f..e21ac50f28 100644 --- a/x/ccv/provider/keeper/migration_test.go +++ b/x/ccv/provider/keeper/migration_test.go @@ -4,8 +4,9 @@ import ( "testing" "time" - testutil "github.com/cosmos/interchain-security/v3/testutil/keeper" "github.com/stretchr/testify/require" + + testutil "github.com/cosmos/interchain-security/v3/testutil/keeper" ) func TestMigrate2To3(t *testing.T) {