Skip to content

Commit

Permalink
add module versions
Browse files Browse the repository at this point in the history
  • Loading branch information
okwme committed Aug 18, 2021
1 parent 48d0d17 commit 6b7056c
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,22 @@ func NewGaiaApp(
app.IBCKeeper.ConnectionKeeper.SetParams(ctx, ibcconnectiontypes.DefaultParams())

fromVM := map[string]uint64{
"ibc": 1,
"auth": 1,
"bank": 1,
"capability": 1,
"crisis": 1,
"distribution": 1,
"evidence": 1,
"gov": 1,
"mint": 1,
"params": 1,
"slashing": 1,
"staking": 1,
"upgrade": 1,
"vesting": 1,
"ibc": 1,
"genutil": 1,
"transfer": 1,
}

return app.mm.RunMigrations(ctx, app.configurator, fromVM)
Expand Down

0 comments on commit 6b7056c

Please sign in to comment.