@agoric/solo 0.10.4-dev-3ba7ca7.0 → 0.10.4-dev-72248e9.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/solo",
3
- "version": "0.10.4-dev-3ba7ca7.0+3ba7ca7",
3
+ "version": "0.10.4-dev-72248e9.0+72248e9",
4
4
  "description": "Agoric's Solo vat runner",
5
5
  "type": "module",
6
6
  "bin": {
@@ -22,19 +22,19 @@
22
22
  "author": "Agoric",
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@agoric/access-token": "0.4.22-dev-3ba7ca7.0+3ba7ca7",
26
- "@agoric/cache": "0.3.3-dev-3ba7ca7.0+3ba7ca7",
27
- "@agoric/cosmic-swingset": "0.41.4-dev-3ba7ca7.0+3ba7ca7",
28
- "@agoric/internal": "0.3.3-dev-3ba7ca7.0+3ba7ca7",
29
- "@agoric/notifier": "0.6.3-dev-3ba7ca7.0+3ba7ca7",
30
- "@agoric/spawner": "0.6.9-dev-3ba7ca7.0+3ba7ca7",
31
- "@agoric/store": "0.9.3-dev-3ba7ca7.0+3ba7ca7",
32
- "@agoric/swing-store": "0.9.2-dev-3ba7ca7.0+3ba7ca7",
33
- "@agoric/swingset-vat": "0.32.3-dev-3ba7ca7.0+3ba7ca7",
34
- "@agoric/telemetry": "0.6.3-dev-3ba7ca7.0+3ba7ca7",
35
- "@agoric/time": "0.3.3-dev-3ba7ca7.0+3ba7ca7",
36
- "@agoric/vats": "0.15.2-dev-3ba7ca7.0+3ba7ca7",
37
- "@agoric/wallet": "0.18.4-dev-3ba7ca7.0+3ba7ca7",
25
+ "@agoric/access-token": "0.4.22-dev-72248e9.0+72248e9",
26
+ "@agoric/cache": "0.3.3-dev-72248e9.0+72248e9",
27
+ "@agoric/cosmic-swingset": "0.41.4-dev-72248e9.0+72248e9",
28
+ "@agoric/internal": "0.3.3-dev-72248e9.0+72248e9",
29
+ "@agoric/notifier": "0.6.3-dev-72248e9.0+72248e9",
30
+ "@agoric/spawner": "0.6.9-dev-72248e9.0+72248e9",
31
+ "@agoric/store": "0.9.3-dev-72248e9.0+72248e9",
32
+ "@agoric/swing-store": "0.9.2-dev-72248e9.0+72248e9",
33
+ "@agoric/swingset-vat": "0.32.3-dev-72248e9.0+72248e9",
34
+ "@agoric/telemetry": "0.6.3-dev-72248e9.0+72248e9",
35
+ "@agoric/time": "0.3.3-dev-72248e9.0+72248e9",
36
+ "@agoric/vats": "0.15.2-dev-72248e9.0+72248e9",
37
+ "@agoric/wallet": "0.18.4-dev-72248e9.0+72248e9",
38
38
  "@endo/captp": "^4.4.3",
39
39
  "@endo/errors": "^1.2.8",
40
40
  "@endo/eventual-send": "^1.2.8",
@@ -55,7 +55,7 @@
55
55
  "ws": "^7.2.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@agoric/ertp": "0.16.3-dev-3ba7ca7.0+3ba7ca7",
58
+ "@agoric/ertp": "0.16.3-dev-72248e9.0+72248e9",
59
59
  "@endo/bundle-source": "^3.5.0",
60
60
  "ava": "^5.3.0",
61
61
  "c8": "^9.1.0"
@@ -79,5 +79,5 @@
79
79
  "typeCoverage": {
80
80
  "atLeast": 74.05
81
81
  },
82
- "gitHead": "3ba7ca79fab3d11187ab59eba43f59b3f112b2c0"
82
+ "gitHead": "72248e9222801b3bea9c5c4d16966ccc1d861df6"
83
83
  }
@@ -696,14 +696,12 @@ ${chainID} chain does not yet know of address ${clientAddr}${adviseEgress(
696
696
  .then(txResult => {
697
697
  // The result had an error code (not 0 or undefined for success).
698
698
  if (txResult.code) {
699
- // eslint-disable-next-line no-use-before-define
700
699
  failedSend(
701
700
  makeError(`Error in tx processing: ${txResult.log}`),
702
701
  );
703
702
  }
704
703
  })
705
704
  .catch(err =>
706
- // eslint-disable-next-line no-use-before-define
707
705
  failedSend(makeError(`Error in tx processing: ${err}`)),
708
706
  );
709
707
 
package/src/start.js CHANGED
@@ -120,7 +120,6 @@ const buildSwingset = async (
120
120
  const withInputQueue = makeWithQueue();
121
121
  const queueThunkForKernel = withInputQueue(async thunk => {
122
122
  thunk();
123
- // eslint-disable-next-line no-use-before-define
124
123
  await processKernel();
125
124
  });
126
125
 
package/src/vat-http.js CHANGED
@@ -28,7 +28,6 @@ export function buildRootObject(vatPowers) {
28
28
 
29
29
  const lookup = async (...path) => {
30
30
  // Take a snapshot of the current home.
31
- // eslint-disable-next-line no-use-before-define
32
31
  const root = replObjects.home;
33
32
 
34
33
  if (path.length === 1 && Array.isArray(path[0])) {
package/src/web.js CHANGED
@@ -370,7 +370,6 @@ export async function makeHTTPListener(
370
370
  return;
371
371
  }
372
372
 
373
- // eslint-disable-next-line no-use-before-define
374
373
  sendJSON({ ...res, meta });
375
374
  } catch (error) {
376
375
  inboundCommand(