Skip to content

Commit

Permalink
feat(upgrade): v3 upgrade handler
Browse files Browse the repository at this point in the history
  • Loading branch information
harish551 committed Feb 8, 2024
1 parent 0236d0c commit b36f1a9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ import (
v012 "github.com/OmniFlix/omniflixhub/v3/app/upgrades/v012"
v2 "github.com/OmniFlix/omniflixhub/v3/app/upgrades/v2"
v2_1 "github.com/OmniFlix/omniflixhub/v3/app/upgrades/v2.1"
v3 "github.com/OmniFlix/omniflixhub/v3/app/upgrades/v3"
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
)

Expand All @@ -69,7 +70,7 @@ var (
// https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34
EnableSpecificProposals = ""

EmptyWasmOpts []wasm.Option
EmptyWasmOpts [][]wasmkeeper.Option
)

func getGovProposalHandlers() []govclient.ProposalHandler {
Expand All @@ -88,7 +89,7 @@ func getGovProposalHandlers() []govclient.ProposalHandler {
var (
// DefaultNodeHome default home directories for the application daemon
DefaultNodeHome string
Upgrades = []upgrades.Upgrade{v012.Upgrade, v2.Upgrade, v2_1.Upgrade}
Upgrades = []upgrades.Upgrade{v012.Upgrade, v2.Upgrade, v2_1.Upgrade, v3.Upgrade}
Forks []upgrades.Fork
)

Expand Down

0 comments on commit b36f1a9

Please sign in to comment.