Skip to content

Commit

Permalink
Prepare v1.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Segfaultd committed Sep 27, 2023
1 parent 027204b commit e4a1a38
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions x/millions/migrations/migrator.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
millionskeeper "github.com/lum-network/chain/x/millions/keeper"
v150 "github.com/lum-network/chain/x/millions/migrations/v150"
v152 "github.com/lum-network/chain/x/millions/migrations/v152"
v160 "github.com/lum-network/chain/x/millions/migrations/v160"
v161 "github.com/lum-network/chain/x/millions/migrations/v161"
)

type Migrator struct {
Expand All @@ -29,5 +29,5 @@ func (m Migrator) Migrate2To3(ctx sdk.Context) error {

// Migrate3To4 migrates from version 3 to 4
func (m Migrator) Migrate3To4(ctx sdk.Context) error {
return v160.MigratePoolTypeAndUnbondingFrequency(ctx, m.keeper)
return v161.MigratePoolTypeAndUnbondingFrequency(ctx, m.keeper)
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v160
package v161

import (
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v160_test
package v161_test

import (
"testing"
Expand All @@ -14,7 +14,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"

apptypes "github.com/lum-network/chain/app"
v160 "github.com/lum-network/chain/x/millions/migrations/v160"
v160 "github.com/lum-network/chain/x/millions/migrations/v161"
millionstypes "github.com/lum-network/chain/x/millions/types"
)

Expand Down

0 comments on commit e4a1a38

Please sign in to comment.