@agoric/cosmos 0.34.2-dev-012ba00.0 → 0.34.2-dev-228f08b.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/app/upgrade.go CHANGED
@@ -157,26 +157,14 @@ func unreleasedUpgradeHandler(app *GaiaApp, targetUpgrade string) func(sdk.Conte
157
157
  return module.VersionMap{}, fmt.Errorf("cannot run %s as first upgrade", plan.Name)
158
158
  }
159
159
 
160
- upgradeIbcVatStep, err :=
161
- buildProposalStepWithArgs(
162
- "@agoric/builders/scripts/vats/upgrade-vats.js",
163
- "upgradeVatsProposalBuilder",
164
- // Map iteration is randomised; use an anonymous struct instead.
165
- struct {
166
- Ibc string `json:"ibc"`
167
- }{
168
- Ibc: "@agoric/vats/src/vat-ibc.js",
169
- },
170
- )
171
- if err != nil {
172
- return module.VersionMap{}, err
173
- }
174
-
175
160
  // Each CoreProposalStep runs sequentially, and can be constructed from
176
161
  // one or more modules executing in parallel within the step.
177
162
  CoreProposalSteps = append(CoreProposalSteps,
178
- // Accommodate string sequence numbers.
179
- upgradeIbcVatStep,
163
+ // Orchestration vats: Fix memory leak in vow tools
164
+ // vat-ibc (included in orchestration): Accommodate string sequence numbers.
165
+ vm.CoreProposalStepForModules(
166
+ "@agoric/builders/scripts/vats/upgrade-orchestration.js",
167
+ ),
180
168
  // Register a new ZCF to be used for all future contract instances and upgrades
181
169
  vm.CoreProposalStepForModules(
182
170
  "@agoric/builders/scripts/vats/upgrade-zcf.js",
package/git-revision.txt CHANGED
@@ -1 +1 @@
1
- 012ba00
1
+ 228f08b
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/cosmos",
3
- "version": "0.34.2-dev-012ba00.0+012ba00",
3
+ "version": "0.34.2-dev-228f08b.0+228f08b",
4
4
  "description": "Connect JS to the Cosmos blockchain SDK",
5
5
  "parsers": {
6
6
  "js": "mjs"
@@ -38,5 +38,5 @@
38
38
  "typeCoverage": {
39
39
  "atLeast": 0
40
40
  },
41
- "gitHead": "012ba000f3124201c059ea6117ec1ac24c5f641a"
41
+ "gitHead": "228f08bb97e0f237e67e0d98115713770f25926a"
42
42
  }