Skip to content

Commit

Permalink
Add upgrade handler for uni testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
the-frey committed Jun 20, 2022
1 parent 1291b66 commit c3f02c7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -840,6 +840,10 @@ func (app *App) RegisterUpgradeHandlers(cfg module.Configurator) {

return app.mm.RunMigrations(ctx, cfg, vm)
})

app.UpgradeKeeper.SetUpgradeHandler("v7-beta", func(ctx sdk.Context, plan upgradetypes.Plan, vm module.VersionMap) (module.VersionMap, error) {
return app.mm.RunMigrations(ctx, cfg, vm)
})
}

// GetMaccPerms returns a copy of the module account permissions
Expand Down

0 comments on commit c3f02c7

Please sign in to comment.