@agoric/cosmic-swingset 0.41.4-dev-3ba7ca7.0 → 0.41.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 +11 -11
- package/src/chain-main.js +0 -1
- package/src/sim-chain.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/cosmic-swingset",
|
|
3
|
-
"version": "0.41.4-dev-
|
|
3
|
+
"version": "0.41.4-dev-72248e9.0+72248e9",
|
|
4
4
|
"description": "Agoric's Cosmos blockchain integration",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -22,15 +22,15 @@
|
|
|
22
22
|
"author": "Agoric",
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@agoric/builders": "0.1.1-dev-
|
|
26
|
-
"@agoric/cosmos": "0.34.2-dev-
|
|
27
|
-
"@agoric/deploy-script-support": "0.10.4-dev-
|
|
28
|
-
"@agoric/internal": "0.3.3-dev-
|
|
29
|
-
"@agoric/store": "0.9.3-dev-
|
|
30
|
-
"@agoric/swing-store": "0.9.2-dev-
|
|
31
|
-
"@agoric/swingset-vat": "0.32.3-dev-
|
|
32
|
-
"@agoric/telemetry": "0.6.3-dev-
|
|
33
|
-
"@agoric/vm-config": "0.1.1-dev-
|
|
25
|
+
"@agoric/builders": "0.1.1-dev-72248e9.0+72248e9",
|
|
26
|
+
"@agoric/cosmos": "0.34.2-dev-72248e9.0+72248e9",
|
|
27
|
+
"@agoric/deploy-script-support": "0.10.4-dev-72248e9.0+72248e9",
|
|
28
|
+
"@agoric/internal": "0.3.3-dev-72248e9.0+72248e9",
|
|
29
|
+
"@agoric/store": "0.9.3-dev-72248e9.0+72248e9",
|
|
30
|
+
"@agoric/swing-store": "0.9.2-dev-72248e9.0+72248e9",
|
|
31
|
+
"@agoric/swingset-vat": "0.32.3-dev-72248e9.0+72248e9",
|
|
32
|
+
"@agoric/telemetry": "0.6.3-dev-72248e9.0+72248e9",
|
|
33
|
+
"@agoric/vm-config": "0.1.1-dev-72248e9.0+72248e9",
|
|
34
34
|
"@endo/bundle-source": "^3.5.0",
|
|
35
35
|
"@endo/env-options": "^1.1.8",
|
|
36
36
|
"@endo/errors": "^1.2.8",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"typeCoverage": {
|
|
72
72
|
"atLeast": 82.83
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "72248e9222801b3bea9c5c4d16966ccc1d861df6"
|
|
75
75
|
}
|
package/src/chain-main.js
CHANGED
|
@@ -222,7 +222,6 @@ export default async function main(progname, args, { env, homedir, agcc }) {
|
|
|
222
222
|
|
|
223
223
|
// Actually run the main ag-chain-cosmos program. Before we start the daemon,
|
|
224
224
|
// there will be a call to nodePort/AG_COSMOS_INIT, otherwise exit.
|
|
225
|
-
// eslint-disable-next-line no-use-before-define
|
|
226
225
|
const nodePort = registerPortHandler(toSwingSet);
|
|
227
226
|
|
|
228
227
|
// Need to keep the process alive until Go exits.
|
package/src/sim-chain.js
CHANGED
|
@@ -173,7 +173,6 @@ export async function connectToFakeChain(basedir, GCI, delay, inbound) {
|
|
|
173
173
|
await blockingSend({ type: 'COMMIT_BLOCK', blockHeight, blockTime });
|
|
174
174
|
|
|
175
175
|
clearTimeout(nextBlockTimeout);
|
|
176
|
-
// eslint-disable-next-line no-use-before-define
|
|
177
176
|
nextBlockTimeout = setTimeout(simulateBlock, maximumDelay);
|
|
178
177
|
|
|
179
178
|
// TODO: maybe add latency to the inbound messages.
|