Skip to content

Commit

Permalink
force migration
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Jul 19, 2024
1 parent d1c0542 commit 0279b28
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions app/setup_handlers.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package app

import (
observertypes "github.com/zeta-chain/zetacore/x/observer/types"
"os"

"github.com/cosmos/cosmos-sdk/baseapp"
Expand Down Expand Up @@ -68,6 +69,7 @@ func SetupHandlers(app *App) {
crisistypes.ModuleName,
emissionstypes.ModuleName,
authoritytypes.ModuleName,
observertypes.ModuleName,
}
allUpgrades := upgradeTracker{
upgrades: []upgradeTrackerItem{
Expand Down
1 change: 0 additions & 1 deletion x/authority/migrations/v2/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ func MigrateStore(
ctx sdk.Context,
keeper authorityKeeper,
) error {
ctx.Logger().Info("Migrating authority store from version 1 to 2")
keeper.SetAuthorizationList(ctx, types.DefaultAuthorizationsList())
return nil
}
1 change: 0 additions & 1 deletion x/observer/migrations/v8/migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ type obsserverKeeper interface {
// It updates the indexing for chain nonces object to use chain ID instead of chain name
func MigrateStore(ctx sdk.Context, observerKeeper obsserverKeeper) error {
updateChainNonceIndexing(ctx, observerKeeper)

return nil
}

Expand Down

0 comments on commit 0279b28

Please sign in to comment.