Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Modify Upgrade Handler #335

Merged
merged 4 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ import (
"github.com/rakyll/statik/fs"

v3_0_2 "github.com/White-Whale-Defi-Platform/migaloo-chain/v4/app/upgrades/v3_0_2"
v4 "github.com/White-Whale-Defi-Platform/migaloo-chain/v4/app/upgrades/v4_1_1"
v4 "github.com/White-Whale-Defi-Platform/migaloo-chain/v4/app/upgrades/v4_1_2"

// unnamed import of statik for swagger UI support
_ "github.com/White-Whale-Defi-Platform/migaloo-chain/v4/client/docs/statik"
Expand Down Expand Up @@ -1150,8 +1150,6 @@ func (app *MigalooApp) setupUpgradeHandlers() {
app.ConsensusParamsKeeper,
app.ICAControllerKeeper,
app.AccountKeeper,
*app.StakingKeeper,
app.BankKeeper,
),
)

Expand Down
9 changes: 0 additions & 9 deletions app/upgrades/v4_1_1/constants.go

This file was deleted.

48 changes: 0 additions & 48 deletions app/upgrades/v4_1_1/mainnet_account.go

This file was deleted.

204 changes: 0 additions & 204 deletions app/upgrades/v4_1_1/upgrades.go

This file was deleted.

102 changes: 0 additions & 102 deletions app/upgrades/v4_1_1/upgrades_test.go

This file was deleted.

7 changes: 7 additions & 0 deletions app/upgrades/v4_1_2/constants.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package v4

// UpgradeName defines the on-chain upgrade name for the Migaloo v4.1.2 upgrade.
// this upgrade includes the fix for pfm
const (
UpgradeName = "v4.1.2"
)
Loading
Loading