agoric 0.21.2-dev-5694c0c.0 → 0.21.2-dev-2ca7ea6.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",
3
- "version": "0.21.2-dev-5694c0c.0+5694c0c",
3
+ "version": "0.21.2-dev-2ca7ea6.0+2ca7ea6",
4
4
  "description": "Manage the Agoric Javascript smart contract platform",
5
5
  "type": "module",
6
6
  "main": "src/main.js",
@@ -29,28 +29,28 @@
29
29
  "lint:eslint": "eslint ."
30
30
  },
31
31
  "devDependencies": {
32
- "@agoric/cosmic-swingset": "0.41.4-dev-5694c0c.0+5694c0c",
33
- "@agoric/deploy-script-support": "0.10.4-dev-5694c0c.0+5694c0c",
32
+ "@agoric/cosmic-swingset": "0.41.4-dev-2ca7ea6.0+2ca7ea6",
33
+ "@agoric/deploy-script-support": "0.10.4-dev-2ca7ea6.0+2ca7ea6",
34
34
  "ava": "^5.3.0",
35
35
  "c8": "^9.1.0",
36
36
  "dd-trace": "^4.11.1"
37
37
  },
38
38
  "dependencies": {
39
- "@agoric/access-token": "0.4.22-dev-5694c0c.0+5694c0c",
40
- "@agoric/cache": "0.3.3-dev-5694c0c.0+5694c0c",
41
- "@agoric/casting": "0.4.3-dev-5694c0c.0+5694c0c",
42
- "@agoric/cosmic-proto": "0.4.1-dev-5694c0c.0+5694c0c",
43
- "@agoric/ertp": "0.16.3-dev-5694c0c.0+5694c0c",
44
- "@agoric/governance": "0.10.4-dev-5694c0c.0+5694c0c",
45
- "@agoric/inter-protocol": "0.16.2-dev-5694c0c.0+5694c0c",
46
- "@agoric/internal": "0.3.3-dev-5694c0c.0+5694c0c",
47
- "@agoric/network": "0.1.1-dev-5694c0c.0+5694c0c",
48
- "@agoric/smart-wallet": "0.5.4-dev-5694c0c.0+5694c0c",
49
- "@agoric/store": "0.9.3-dev-5694c0c.0+5694c0c",
50
- "@agoric/swingset-vat": "0.32.3-dev-5694c0c.0+5694c0c",
51
- "@agoric/vats": "0.15.2-dev-5694c0c.0+5694c0c",
52
- "@agoric/zoe": "0.26.3-dev-5694c0c.0+5694c0c",
53
- "@agoric/zone": "0.2.3-dev-5694c0c.0+5694c0c",
39
+ "@agoric/access-token": "0.4.22-dev-2ca7ea6.0+2ca7ea6",
40
+ "@agoric/cache": "0.3.3-dev-2ca7ea6.0+2ca7ea6",
41
+ "@agoric/casting": "0.4.3-dev-2ca7ea6.0+2ca7ea6",
42
+ "@agoric/cosmic-proto": "0.4.1-dev-2ca7ea6.0+2ca7ea6",
43
+ "@agoric/ertp": "0.16.3-dev-2ca7ea6.0+2ca7ea6",
44
+ "@agoric/governance": "0.10.4-dev-2ca7ea6.0+2ca7ea6",
45
+ "@agoric/inter-protocol": "0.16.2-dev-2ca7ea6.0+2ca7ea6",
46
+ "@agoric/internal": "0.3.3-dev-2ca7ea6.0+2ca7ea6",
47
+ "@agoric/network": "0.1.1-dev-2ca7ea6.0+2ca7ea6",
48
+ "@agoric/smart-wallet": "0.5.4-dev-2ca7ea6.0+2ca7ea6",
49
+ "@agoric/store": "0.9.3-dev-2ca7ea6.0+2ca7ea6",
50
+ "@agoric/swingset-vat": "0.32.3-dev-2ca7ea6.0+2ca7ea6",
51
+ "@agoric/vats": "0.15.2-dev-2ca7ea6.0+2ca7ea6",
52
+ "@agoric/zoe": "0.26.3-dev-2ca7ea6.0+2ca7ea6",
53
+ "@agoric/zone": "0.2.3-dev-2ca7ea6.0+2ca7ea6",
54
54
  "@confio/relayer": "^0.11.3",
55
55
  "@cosmjs/crypto": "^0.32.3",
56
56
  "@cosmjs/encoding": "^0.32.3",
@@ -101,5 +101,5 @@
101
101
  "typeCoverage": {
102
102
  "atLeast": 77.44
103
103
  },
104
- "gitHead": "5694c0c706d7f8516c565c893ff844d0ada92b8a"
104
+ "gitHead": "2ca7ea6ff2dfc5f5db4624fb3cdcab1786571e73"
105
105
  }
@@ -172,7 +172,7 @@ export const gettingStartedWorkflowTest = async (t, options = {}) => {
172
172
 
173
173
  // ==============
174
174
  // wait for the chain to start
175
- let lastKnownBlockHeight = 0n;
175
+ let lastKnownBlockHeight = 2n;
176
176
  for (;;) {
177
177
  try {
178
178
  const currentHeight = await getLatestBlockHeight(
@@ -181,8 +181,8 @@ export const gettingStartedWorkflowTest = async (t, options = {}) => {
181
181
  if (currentHeight > lastKnownBlockHeight) {
182
182
  const earlierHeight = lastKnownBlockHeight;
183
183
  lastKnownBlockHeight = currentHeight;
184
- if (earlierHeight > 0n && currentHeight > earlierHeight) {
185
- // We've had at least one block produced.
184
+ if (earlierHeight > 2n && currentHeight > earlierHeight) {
185
+ // We've had at least 3 blocks produced.
186
186
  break;
187
187
  }
188
188
  }