@abtnode/constant 1.16.19-beta-e93c5bf3 → 1.16.19-beta-e6aac665
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/index.js +5 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -318,6 +318,10 @@ const MONITOR_RECORD_INTERVAL_SEC = 10;
|
|
|
318
318
|
// 保存当天数据, 每天上报 8640 次
|
|
319
319
|
const MONITOR_HISTORY_LENGTH = 86400 / MONITOR_RECORD_INTERVAL_SEC;
|
|
320
320
|
|
|
321
|
+
const FEDERATED = {
|
|
322
|
+
SYNC_LIMIT: 3,
|
|
323
|
+
};
|
|
324
|
+
|
|
321
325
|
module.exports = Object.freeze({
|
|
322
326
|
// Blocklet Server
|
|
323
327
|
NODE_MODES: Object.freeze({
|
|
@@ -547,4 +551,5 @@ module.exports = Object.freeze({
|
|
|
547
551
|
},
|
|
548
552
|
|
|
549
553
|
COPYRIGHT_OWNER: 'ArcBlock',
|
|
554
|
+
FEDERATED,
|
|
550
555
|
});
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "1.16.19-beta-
|
|
6
|
+
"version": "1.16.19-beta-e6aac665",
|
|
7
7
|
"description": "ABT Node constants",
|
|
8
8
|
"main": "index.js",
|
|
9
9
|
"files": [
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"jest": "^27.5.1"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "09b0172831521ef73f7879940b977c2696b5b247"
|
|
24
24
|
}
|