Skip to content

Commit

Permalink
added upgrade handler
Browse files Browse the repository at this point in the history
  • Loading branch information
dpdanpittman committed Dec 16, 2023
1 parent ac09eea commit 2cbe65f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"github.com/cosmic-horizon/qwoyn/app/upgrades"
v5_1 "github.com/cosmic-horizon/qwoyn/app/upgrades/v5_1"
v5_2 "github.com/cosmic-horizon/qwoyn/app/upgrades/v5_2"
v5_3 "github.com/cosmic-horizon/qwoyn/app/upgrades/v5_3"
intertx "github.com/cosmic-horizon/qwoyn/x/intertx"
intertxkeeper "github.com/cosmic-horizon/qwoyn/x/intertx/keeper"
intertxtypes "github.com/cosmic-horizon/qwoyn/x/intertx/types"
Expand Down Expand Up @@ -192,7 +193,7 @@ var (
// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string

Upgrades = []upgrades.Upgrade{v5_1.Upgrade, v5_2.Upgrade}
Upgrades = []upgrades.Upgrade{v5_1.Upgrade, v5_2.Upgrade, v5_3.Upgrade}

// ModuleBasics defines the module BasicManager is in charge of setting up basic,
// non-dependant module elements, such as codec registration
Expand Down

0 comments on commit 2cbe65f

Please sign in to comment.