Skip to content

Commit

Permalink
add v6
Browse files Browse the repository at this point in the history
  • Loading branch information
GNaD13 committed Sep 21, 2023
1 parent 3d784dd commit fa25302
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ import (
v4_5 "github.com/notional-labs/centauri/v6/app/upgrades/v4_5"
v4_5_1 "github.com/notional-labs/centauri/v6/app/upgrades/v4_5_1"
v5_1_0 "github.com/notional-labs/centauri/v6/app/upgrades/v5_1_0"
v6 "github.com/notional-labs/centauri/v6/app/upgrades/v6"

upgrades "github.com/notional-labs/centauri/v6/app/upgrades"

Expand Down Expand Up @@ -146,7 +147,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}
)

Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v6/constants.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v5
package v6

import (
store "github.com/cosmos/cosmos-sdk/store/types"
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v6/upgrade.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v5
package v6

import (
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down

0 comments on commit fa25302

Please sign in to comment.