@agoric/swingset-vat 0.32.3-dev-275a1bd.0 → 0.32.3-dev-a0953fe.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/swingset-vat",
3
- "version": "0.32.3-dev-275a1bd.0+275a1bd",
3
+ "version": "0.32.3-dev-a0953fe.0+a0953fe",
4
4
  "description": "Vat/Container Launcher",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -27,17 +27,17 @@
27
27
  "@types/yargs-parser": "^21.0.0"
28
28
  },
29
29
  "dependencies": {
30
- "@agoric/assert": "0.6.1-dev-275a1bd.0+275a1bd",
31
- "@agoric/internal": "0.3.3-dev-275a1bd.0+275a1bd",
32
- "@agoric/kmarshal": "0.1.1-dev-275a1bd.0+275a1bd",
33
- "@agoric/store": "0.9.3-dev-275a1bd.0+275a1bd",
34
- "@agoric/swing-store": "0.9.2-dev-275a1bd.0+275a1bd",
35
- "@agoric/swingset-liveslots": "0.10.3-dev-275a1bd.0+275a1bd",
36
- "@agoric/swingset-xsnap-supervisor": "0.10.3-dev-275a1bd.0+275a1bd",
37
- "@agoric/time": "0.3.3-dev-275a1bd.0+275a1bd",
38
- "@agoric/vat-data": "0.5.3-dev-275a1bd.0+275a1bd",
39
- "@agoric/xsnap": "0.14.3-dev-275a1bd.0+275a1bd",
40
- "@agoric/xsnap-lockdown": "0.14.1-dev-275a1bd.0+275a1bd",
30
+ "@agoric/assert": "0.6.1-dev-a0953fe.0+a0953fe",
31
+ "@agoric/internal": "0.3.3-dev-a0953fe.0+a0953fe",
32
+ "@agoric/kmarshal": "0.1.1-dev-a0953fe.0+a0953fe",
33
+ "@agoric/store": "0.9.3-dev-a0953fe.0+a0953fe",
34
+ "@agoric/swing-store": "0.9.2-dev-a0953fe.0+a0953fe",
35
+ "@agoric/swingset-liveslots": "0.10.3-dev-a0953fe.0+a0953fe",
36
+ "@agoric/swingset-xsnap-supervisor": "0.10.3-dev-a0953fe.0+a0953fe",
37
+ "@agoric/time": "0.3.3-dev-a0953fe.0+a0953fe",
38
+ "@agoric/vat-data": "0.5.3-dev-a0953fe.0+a0953fe",
39
+ "@agoric/xsnap": "0.14.3-dev-a0953fe.0+a0953fe",
40
+ "@agoric/xsnap-lockdown": "0.14.1-dev-a0953fe.0+a0953fe",
41
41
  "@endo/base64": "^0.2.34",
42
42
  "@endo/bundle-source": "^2.7.0",
43
43
  "@endo/captp": "^3.1.4",
@@ -102,5 +102,5 @@
102
102
  "typeCoverage": {
103
103
  "atLeast": 75.26
104
104
  },
105
- "gitHead": "275a1bd4850ee9ae75db34f1dda3516c3ca766ac"
105
+ "gitHead": "a0953fe7d6d64fb37d426f69c087aa2d0a7ca4fe"
106
106
  }
@@ -553,10 +553,10 @@ export default function makeKernelKeeper(kernelStorage, kernelSlog) {
553
553
  * Allocate a new koid.
554
554
  *
555
555
  * @param {string} ownerID
556
- * @param {undefined | bigint} id
556
+ * @param {bigint} [id]
557
557
  * @returns {string}
558
558
  */
559
- function addKernelObject(ownerID, id = undefined) {
559
+ function addKernelObject(ownerID, id) {
560
560
  // providing id= is only for unit tests
561
561
  insistVatID(ownerID);
562
562
  if (id === undefined) {