Skip to content

Commit

Permalink
Revert "fixup! test: const location"
Browse files Browse the repository at this point in the history
This reverts commit e89c970.
  • Loading branch information
iomekam committed Aug 31, 2023
1 parent 82ae4cb commit f828dcf
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions golang/cosmos/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,9 +126,6 @@ import (

const appName = "agoric"

const upgradeName = "agoric-upgrade-12"
const upgradeNameTest = "agorictest-upgrade-12"

// FlagSwingStoreExportDir defines the config flag used to specify where a
// genesis swing-store export is expected. For start from genesis, the default
// value is config/swing-store in the home directory. For genesis export, the
Expand Down Expand Up @@ -793,6 +790,11 @@ func NewAgoricApp(
app.SetBeginBlocker(app.BeginBlocker)
app.SetEndBlocker(app.EndBlocker)

const (
upgradeName = "agoric-upgrade-12"
upgradeNameTest = "agorictest-upgrade-12"
)

app.UpgradeKeeper.SetUpgradeHandler(
upgradeName,
upgrade12Handler(app, upgradeName),
Expand Down

0 comments on commit f828dcf

Please sign in to comment.