Skip to content

Commit

Permalink
feat(cosmos): upgrade wallet factory
Browse files Browse the repository at this point in the history
  • Loading branch information
mhofman committed Jan 30, 2024
1 parent f7cf388 commit 38c173e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
6 changes: 1 addition & 5 deletions a3p-integration/proposals/a:upgrade-14/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,7 @@
"releaseNotes": "https://github.com/Agoric/agoric-sdk/releases/tag/agoric-upgrade-14",
"sdkImageTag": "unreleased",
"planName": "agoric-upgrade-14",
"upgradeInfo": {
"coreProposals": [
"@agoric/vats/scripts/build-wallet-factory2-upgrade.js"
]
},
"upgradeInfo": {},
"type": "Software Upgrade Proposal"
},
"type": "module",
Expand Down
5 changes: 4 additions & 1 deletion golang/cosmos/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,10 @@ func upgrade14Handler(app *GaiaApp, targetUpgrade string) func(sdk.Context, upgr
// Core proposals that should run during the upgrade block
// These will be merged with any coreProposals specified in the
// upgradeInfo field of the upgrade plan ran as subsequent steps
CoreProposals: vm.CoreProposalsFromSteps(),
CoreProposals: vm.CoreProposalsFromSteps(
// Upgrade wallet factory as part of upgrade-14
vm.CoreProposalStepForModules("@agoric/vats/scripts/build-wallet-factory2-upgrade.js"),
),
}

// Always run module migrations
Expand Down

0 comments on commit 38c173e

Please sign in to comment.