Skip to content
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
2 changes: 1 addition & 1 deletion app/upgrades/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import (
// | v1.8.0 | standard | testnet/devnet: add PFM, drop NFT | Store upgrade gated to non-mainnet; handler is migrations only
// | v1.8.4 | standard | mainnet: add PFM, drop NFT | Store upgrade gated to mainnet; handler is migrations only
// | v1.8.5 | standard | none | Migrations only
// | v1.8.8 | custom | none | Backfills action/supernode secondary indices
// | v1.9.0 | custom | none | Backfills action/supernode secondary indices
// ======================================================================================================================

type UpgradeConfig struct {
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/upgrades_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ func TestSetupUpgradesAndHandlers(t *testing.T) {
continue
}

// v1.8.8 requires full keeper wiring; exercising it here would require
// v1.9.0 requires full keeper wiring; exercising it here would require
// a full app harness. This test only verifies registration and gating.
if upgradeName == upgrade_v1_9_0.UpgradeName {
continue
Expand Down
6 changes: 3 additions & 3 deletions app/upgrades/v1_9_0/upgrade.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package v1_8_8
package v1_9_0

import (
"context"
Expand All @@ -14,9 +14,9 @@ import (
)

// UpgradeName is the on-chain name used for this upgrade.
const UpgradeName = "v1.8.8"
const UpgradeName = "v1.9.0"

// CreateUpgradeHandler creates an upgrade handler for v1.8.8.
// CreateUpgradeHandler creates an upgrade handler for v1.9.0.
//
// This upgrade backfills secondary indices introduced in prior releases:
// - action module: state/creator/type/block/supernode indices
Expand Down