@streamr/trackerless-network 101.1.1-beta.1 → 101.1.2
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/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamr/trackerless-network",
|
|
3
|
-
"version": "101.1.
|
|
3
|
+
"version": "101.1.2",
|
|
4
4
|
"description": "Minimal and extendable implementation of the Streamr Network node.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@protobuf-ts/runtime": "^2.8.2",
|
|
32
32
|
"@protobuf-ts/runtime-rpc": "^2.8.2",
|
|
33
|
-
"@streamr/dht": "101.1.
|
|
34
|
-
"@streamr/proto-rpc": "101.1.
|
|
35
|
-
"@streamr/test-utils": "101.1.
|
|
36
|
-
"@streamr/utils": "101.1.
|
|
33
|
+
"@streamr/dht": "101.1.2",
|
|
34
|
+
"@streamr/proto-rpc": "101.1.2",
|
|
35
|
+
"@streamr/test-utils": "101.1.2",
|
|
36
|
+
"@streamr/utils": "101.1.2",
|
|
37
37
|
"eventemitter3": "^5.0.0",
|
|
38
38
|
"lodash": "^4.17.21",
|
|
39
39
|
"uuid": "^10.0.0",
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Propagation = void 0;
|
|
4
4
|
const PropagationTaskStore_1 = require("./PropagationTaskStore");
|
|
5
5
|
const DEFAULT_MAX_MESSAGES = 150;
|
|
6
|
-
const DEFAULT_TTL =
|
|
6
|
+
const DEFAULT_TTL = 10 * 1000;
|
|
7
7
|
/**
|
|
8
8
|
* Message propagation logic of a node. Given a message, this class will actively attempt to propagate it to
|
|
9
9
|
* `minPropagationTargets` neighbors until success or TTL expiration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@streamr/trackerless-network",
|
|
3
|
-
"version": "101.1.
|
|
3
|
+
"version": "101.1.2",
|
|
4
4
|
"description": "Minimal and extendable implementation of the Streamr Network node.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@protobuf-ts/runtime": "^2.8.2",
|
|
32
32
|
"@protobuf-ts/runtime-rpc": "^2.8.2",
|
|
33
|
-
"@streamr/dht": "101.1.
|
|
34
|
-
"@streamr/proto-rpc": "101.1.
|
|
35
|
-
"@streamr/test-utils": "101.1.
|
|
36
|
-
"@streamr/utils": "101.1.
|
|
33
|
+
"@streamr/dht": "101.1.2",
|
|
34
|
+
"@streamr/proto-rpc": "101.1.2",
|
|
35
|
+
"@streamr/test-utils": "101.1.2",
|
|
36
|
+
"@streamr/utils": "101.1.2",
|
|
37
37
|
"eventemitter3": "^5.0.0",
|
|
38
38
|
"lodash": "^4.17.21",
|
|
39
39
|
"uuid": "^10.0.0",
|
|
@@ -12,7 +12,7 @@ interface ConstructorOptions {
|
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
const DEFAULT_MAX_MESSAGES = 150
|
|
15
|
-
const DEFAULT_TTL =
|
|
15
|
+
const DEFAULT_TTL = 10 * 1000
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
18
|
* Message propagation logic of a node. Given a message, this class will actively attempt to propagate it to
|