@lodestar/reqresp 1.43.0-rc.1 → 1.43.0-rc.5

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.
@@ -13,7 +13,7 @@ export declare enum RespStatus {
13
13
  */
14
14
  SERVER_ERROR = 2,
15
15
  /**
16
- * The responder does not have requested resource. The response payload adheres to the ErrorMessage schema (described below). Note: This response code is only valid as a response to BlocksByRange
16
+ * The responder does not have requested resource. The response payload adheres to the ErrorMessage schema.
17
17
  */
18
18
  RESOURCE_UNAVAILABLE = 3,
19
19
  /**
package/lib/interface.js CHANGED
@@ -16,7 +16,7 @@ var RespStatus;
16
16
  */
17
17
  RespStatus[RespStatus["SERVER_ERROR"] = 2] = "SERVER_ERROR";
18
18
  /**
19
- * The responder does not have requested resource. The response payload adheres to the ErrorMessage schema (described below). Note: This response code is only valid as a response to BlocksByRange
19
+ * The responder does not have requested resource. The response payload adheres to the ErrorMessage schema.
20
20
  */
21
21
  RespStatus[RespStatus["RESOURCE_UNAVAILABLE"] = 3] = "RESOURCE_UNAVAILABLE";
22
22
  /**
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "bugs": {
12
12
  "url": "https://github.com/ChainSafe/lodestar/issues"
13
13
  },
14
- "version": "1.43.0-rc.1",
14
+ "version": "1.43.0-rc.5",
15
15
  "type": "module",
16
16
  "exports": {
17
17
  ".": {
@@ -47,9 +47,9 @@
47
47
  "@chainsafe/fast-crc32c": "^4.2.0",
48
48
  "@libp2p/interface": "^3.1.0",
49
49
  "@libp2p/utils": "^7.0.13",
50
- "@lodestar/config": "^1.43.0-rc.1",
51
- "@lodestar/params": "^1.43.0-rc.1",
52
- "@lodestar/utils": "^1.43.0-rc.1",
50
+ "@lodestar/config": "^1.43.0-rc.5",
51
+ "@lodestar/params": "^1.43.0-rc.5",
52
+ "@lodestar/utils": "^1.43.0-rc.5",
53
53
  "snappy": "^7.2.2",
54
54
  "snappyjs": "^0.7.0",
55
55
  "uint8-varint": "^2.0.2",
@@ -60,8 +60,8 @@
60
60
  "@libp2p/crypto": "^5.1.13",
61
61
  "@libp2p/logger": "^6.2.2",
62
62
  "@libp2p/peer-id": "^6.0.4",
63
- "@lodestar/logger": "^1.43.0-rc.1",
64
- "@lodestar/types": "^1.43.0-rc.1",
63
+ "@lodestar/logger": "^1.43.0-rc.5",
64
+ "@lodestar/types": "^1.43.0-rc.5",
65
65
  "libp2p": "3.1.6"
66
66
  },
67
67
  "peerDependencies": {
@@ -75,5 +75,5 @@
75
75
  "reqresp",
76
76
  "blockchain"
77
77
  ],
78
- "gitHead": "543b88e41d6cb7586e704ccb21ba53f9a27532e8"
78
+ "gitHead": "d7caddaad924496813904b3049464c02a99d7c46"
79
79
  }
package/src/interface.ts CHANGED
@@ -14,7 +14,7 @@ export enum RespStatus {
14
14
  */
15
15
  SERVER_ERROR = 2,
16
16
  /**
17
- * The responder does not have requested resource. The response payload adheres to the ErrorMessage schema (described below). Note: This response code is only valid as a response to BlocksByRange
17
+ * The responder does not have requested resource. The response payload adheres to the ErrorMessage schema.
18
18
  */
19
19
  RESOURCE_UNAVAILABLE = 3,
20
20
  /**