@agoric/solo 0.10.4-dev-f2445bc.0 → 0.10.4-dev-479a1a0.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.
Files changed (2) hide show
  1. package/package.json +17 -17
  2. package/test/test-home.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agoric/solo",
3
- "version": "0.10.4-dev-f2445bc.0+f2445bc",
3
+ "version": "0.10.4-dev-479a1a0.0+479a1a0",
4
4
  "description": "Agoric's Solo vat runner",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,20 +22,20 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/access-token": "0.4.22-dev-f2445bc.0+f2445bc",
26
- "@agoric/assert": "0.6.1-dev-f2445bc.0+f2445bc",
27
- "@agoric/cache": "0.3.3-dev-f2445bc.0+f2445bc",
28
- "@agoric/cosmic-swingset": "0.41.4-dev-f2445bc.0+f2445bc",
29
- "@agoric/internal": "0.3.3-dev-f2445bc.0+f2445bc",
30
- "@agoric/notifier": "0.6.3-dev-f2445bc.0+f2445bc",
31
- "@agoric/spawner": "0.6.9-dev-f2445bc.0+f2445bc",
32
- "@agoric/store": "0.9.3-dev-f2445bc.0+f2445bc",
33
- "@agoric/swing-store": "0.9.2-dev-f2445bc.0+f2445bc",
34
- "@agoric/swingset-vat": "0.32.3-dev-f2445bc.0+f2445bc",
35
- "@agoric/telemetry": "0.6.3-dev-f2445bc.0+f2445bc",
36
- "@agoric/time": "0.3.3-dev-f2445bc.0+f2445bc",
37
- "@agoric/vats": "0.15.2-dev-f2445bc.0+f2445bc",
38
- "@agoric/wallet": "0.18.4-dev-f2445bc.0+f2445bc",
25
+ "@agoric/access-token": "0.4.22-dev-479a1a0.0+479a1a0",
26
+ "@agoric/assert": "0.6.1-dev-479a1a0.0+479a1a0",
27
+ "@agoric/cache": "0.3.3-dev-479a1a0.0+479a1a0",
28
+ "@agoric/cosmic-swingset": "0.41.4-dev-479a1a0.0+479a1a0",
29
+ "@agoric/internal": "0.3.3-dev-479a1a0.0+479a1a0",
30
+ "@agoric/notifier": "0.6.3-dev-479a1a0.0+479a1a0",
31
+ "@agoric/spawner": "0.6.9-dev-479a1a0.0+479a1a0",
32
+ "@agoric/store": "0.9.3-dev-479a1a0.0+479a1a0",
33
+ "@agoric/swing-store": "0.9.2-dev-479a1a0.0+479a1a0",
34
+ "@agoric/swingset-vat": "0.32.3-dev-479a1a0.0+479a1a0",
35
+ "@agoric/telemetry": "0.6.3-dev-479a1a0.0+479a1a0",
36
+ "@agoric/time": "0.3.3-dev-479a1a0.0+479a1a0",
37
+ "@agoric/vats": "0.15.2-dev-479a1a0.0+479a1a0",
38
+ "@agoric/wallet": "0.18.4-dev-479a1a0.0+479a1a0",
39
39
  "@endo/captp": "^3.1.2",
40
40
  "@endo/eventual-send": "^0.17.3",
41
41
  "@endo/import-bundle": "^0.3.5",
@@ -56,7 +56,7 @@
56
56
  "ws": "^7.2.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@agoric/ertp": "0.16.3-dev-f2445bc.0+f2445bc",
59
+ "@agoric/ertp": "0.16.3-dev-479a1a0.0+479a1a0",
60
60
  "@endo/bundle-source": "^2.5.2",
61
61
  "ava": "^5.3.0",
62
62
  "c8": "^7.13.0"
@@ -74,5 +74,5 @@
74
74
  "timeout": "20m",
75
75
  "workerThreads": false
76
76
  },
77
- "gitHead": "f2445bcb471c26169ea8052d04e96d51ef9f1487"
77
+ "gitHead": "479a1a02a362144acf30cb9ca956dc05f6cfb5ea"
78
78
  }
package/test/test-home.js CHANGED
@@ -155,7 +155,7 @@ test.serial('home.localTimerService makeNotifier', async t => {
155
155
  const notifier = E(localTimerService).makeNotifier(1n, 1n);
156
156
  const update1 = await E(notifier).getUpdateSince();
157
157
  const firstUpdate = update1.updateCount;
158
- t.truthy(firstUpdate > 0);
158
+ t.true(firstUpdate > 0);
159
159
  const update2 = await E(notifier).getUpdateSince(update1.updateCount);
160
160
  t.truthy(BigInt(update2.updateCount) > BigInt(firstUpdate));
161
161