Skip to content

Commit

Permalink
add v6 upgrade to app.go
Browse files Browse the repository at this point in the history
  • Loading branch information
GNaD13 committed Oct 9, 2023
1 parent 1584109 commit 4dbf2c9
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 @@ -35,6 +35,7 @@ import (
"github.com/notional-labs/centauri/v6/app/keepers"
v4 "github.com/notional-labs/centauri/v6/app/upgrades/v4"
v5 "github.com/notional-labs/centauri/v6/app/upgrades/v5"
v6 "github.com/notional-labs/centauri/v6/app/upgrades/v6"

// bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
"github.com/cosmos/cosmos-sdk/x/authz"
Expand Down Expand Up @@ -143,7 +144,7 @@ var (
// https://github.com/CosmWasm/wasmd/blob/02a54d33ff2c064f3539ae12d75d027d9c665f05/x/wasm/internal/types/proposal.go#L28-L34
EnableSpecificProposals = ""

Upgrades = []upgrades.Upgrade{v4.Upgrade, v5.Upgrade}
Upgrades = []upgrades.Upgrade{v4.Upgrade, v5.Upgrade, v6.Upgrade}
Forks = []upgrades.Fork{v4_5.Fork, v4_5_1.Fork, v5_1_0.Fork, v5_2_0.Fork}
)

Expand Down

0 comments on commit 4dbf2c9

Please sign in to comment.