Skip to content

Commit

Permalink
revert banksy changes to resolve halted chain.
Browse files Browse the repository at this point in the history
  • Loading branch information
RustNinja committed Mar 6, 2024
1 parent 391729c commit be3b7ff
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import (
"github.com/cosmos/cosmos-sdk/x/bank"

"github.com/notional-labs/composable/v6/app/keepers"
"github.com/notional-labs/composable/v6/app/upgrades/v6_4_5"
"github.com/notional-labs/composable/v6/app/upgrades/v6_4_6"

// bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"

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

Upgrades = []upgrades.Upgrade{v6_4_5.Upgrade}
Upgrades = []upgrades.Upgrade{v6_4_6.Upgrade}
Forks = []upgrades.Fork{}
)

Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v6_4_5/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

const (
// UpgradeName defines the on-chain upgrade name for the composable upgrade.
UpgradeName = "v6_4_5"
UpgradeName = "v6_4_55"
)

var Upgrade = upgrades.Upgrade{
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/v6_4_6/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

const (
// UpgradeName defines the on-chain upgrade name for the composable upgrade.
UpgradeName = "v6_4_6"
UpgradeName = "v6_4_5"
)

var Upgrade = upgrades.Upgrade{
Expand Down

0 comments on commit be3b7ff

Please sign in to comment.