diff --git a/app/upgrades/v300/upgrades.go b/app/upgrades/v300/upgrades.go index 2fff77d5f..e22578cdd 100644 --- a/app/upgrades/v300/upgrades.go +++ b/app/upgrades/v300/upgrades.go @@ -37,6 +37,10 @@ func upgradeHandlerConstructor( if err := mergeToken(ctx, box); err != nil { return nil, err } + + if err := mergeGov(ctx, box); err != nil { + return nil, err + } // initialize ICS27 module initICAModule(ctx, m, fromVM)