@lodestar/validator 1.46.0-dev.e00bf67333 → 1.46.0-dev.fcf0b94a96

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/lib/validator.js CHANGED
@@ -202,7 +202,7 @@ export class Validator {
202
202
  logger.info("Genesis fetched from the beacon node");
203
203
  const res = await api.config.getSpec();
204
204
  assertEqualParams(config, res.value());
205
- logger.info("Verified connected beacon node and validator have same the config");
205
+ logger.info("Verified connected beacon node and validator have the same config");
206
206
  await assertEqualGenesis(opts, genesis);
207
207
  logger.info("Verified connected beacon node and validator have the same genesisValidatorRoot");
208
208
  const { broadcastValidation = defaultOptions.broadcastValidation, valProposerConfig } = opts;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lodestar/validator",
3
- "version": "1.46.0-dev.e00bf67333",
3
+ "version": "1.46.0-dev.fcf0b94a96",
4
4
  "description": "A Typescript implementation of the validator client",
5
5
  "author": "ChainSafe Systems",
6
6
  "license": "Apache-2.0",
@@ -50,21 +50,21 @@
50
50
  "dependencies": {
51
51
  "@chainsafe/blst": "^2.2.0",
52
52
  "@chainsafe/ssz": "^1.6.2",
53
- "@lodestar/api": "^1.46.0-dev.e00bf67333",
54
- "@lodestar/config": "^1.46.0-dev.e00bf67333",
55
- "@lodestar/db": "^1.46.0-dev.e00bf67333",
56
- "@lodestar/params": "^1.46.0-dev.e00bf67333",
57
- "@lodestar/state-transition": "^1.46.0-dev.e00bf67333",
58
- "@lodestar/types": "^1.46.0-dev.e00bf67333",
59
- "@lodestar/utils": "^1.46.0-dev.e00bf67333",
53
+ "@lodestar/api": "^1.46.0-dev.fcf0b94a96",
54
+ "@lodestar/config": "^1.46.0-dev.fcf0b94a96",
55
+ "@lodestar/db": "^1.46.0-dev.fcf0b94a96",
56
+ "@lodestar/params": "^1.46.0-dev.fcf0b94a96",
57
+ "@lodestar/state-transition": "^1.46.0-dev.fcf0b94a96",
58
+ "@lodestar/types": "^1.46.0-dev.fcf0b94a96",
59
+ "@lodestar/utils": "^1.46.0-dev.fcf0b94a96",
60
60
  "strict-event-emitter-types": "^2.0.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@lodestar/logger": "^1.46.0-dev.e00bf67333",
64
- "@lodestar/spec-test-util": "^1.46.0-dev.e00bf67333",
65
- "@lodestar/test-utils": "^1.46.0-dev.e00bf67333",
63
+ "@lodestar/logger": "^1.46.0-dev.fcf0b94a96",
64
+ "@lodestar/spec-test-util": "^1.46.0-dev.fcf0b94a96",
65
+ "@lodestar/test-utils": "^1.46.0-dev.fcf0b94a96",
66
66
  "@vekexasia/bigint-buffer2": "^1.1.1",
67
67
  "rimraf": "^4.4.1"
68
68
  },
69
- "gitHead": "c03abfa3c4febb9e3a50618806c41259addbdbbb"
69
+ "gitHead": "19226b8d273400d2ef9155f5e9738aa78ca69c8c"
70
70
  }
package/src/validator.ts CHANGED
@@ -362,7 +362,7 @@ export class Validator {
362
362
 
363
363
  const res = await api.config.getSpec();
364
364
  assertEqualParams(config, res.value());
365
- logger.info("Verified connected beacon node and validator have same the config");
365
+ logger.info("Verified connected beacon node and validator have the same config");
366
366
 
367
367
  await assertEqualGenesis(opts, genesis);
368
368
  logger.info("Verified connected beacon node and validator have the same genesisValidatorRoot");