paid-services 4.3.0 → 4.3.1
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/CHANGELOG.md +1 -1
- package/groups/p2p/find_group_partners.js +2 -2
- package/groups/p2p/peer_with_partners.js +1 -1
- package/groups/p2p/register_group_connected.js +1 -1
- package/groups/p2p/register_pending_open.js +1 -1
- package/groups/p2p/register_signed_open.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -9,10 +9,10 @@ const {makePeerRequest} = require('./../../p2p');
|
|
|
9
9
|
const {serviceTypeFindGroupPartners} = require('./../../service_types');
|
|
10
10
|
|
|
11
11
|
const defaultConnectIntervalMs = 500;
|
|
12
|
-
const defaultConnectPollTimes = 2 * 60 *
|
|
12
|
+
const defaultConnectPollTimes = 2 * 60 * 30;
|
|
13
13
|
const defaultGroupPartnersIntervalMs = 500;
|
|
14
14
|
const defaultGroupPartnersPollTimes = 2 * 60 * 60 * 24 * 3;
|
|
15
|
-
const defaultRequestTimeoutMs = 1000 * 60;
|
|
15
|
+
const defaultRequestTimeoutMs = 1000 * 60 * 5;
|
|
16
16
|
const minGroupCount = 2;
|
|
17
17
|
const missingGroupPartners = 'NoGroupPartnersFound';
|
|
18
18
|
const typeGroupChannelId = '1';
|
|
@@ -8,7 +8,7 @@ const {makePeerRequest} = require('./../../p2p');
|
|
|
8
8
|
const {serviceTypeConfirmConnected} = require('./../../service_types');
|
|
9
9
|
|
|
10
10
|
const defaultIntervalMs = 500;
|
|
11
|
-
const defaultPollTimes = 2 * 60 *
|
|
11
|
+
const defaultPollTimes = 2 * 60 * 30;
|
|
12
12
|
const defaultRequestTimeoutMs = 1000 * 60;
|
|
13
13
|
const missingGroupPartners = 'NoGroupPartnersFound';
|
|
14
14
|
const typeGroupChannelId = '1';
|
|
@@ -16,7 +16,7 @@ const {signAndFundGroupChannel} = require('./../funding');
|
|
|
16
16
|
|
|
17
17
|
const bufferAsHex = buffer => buffer.toString('hex');
|
|
18
18
|
const defaultIntervalMs = 500;
|
|
19
|
-
const defaultPollTimes = 2 * 60 *
|
|
19
|
+
const defaultPollTimes = 2 * 60 * 30;
|
|
20
20
|
const defaultRequestTimeoutMs = 1000 * 60;
|
|
21
21
|
const {fromHex} = Transaction;
|
|
22
22
|
const hexAsBuffer = hex => Buffer.from(hex, 'hex');
|
|
@@ -9,7 +9,7 @@ const {makePeerRequest} = require('./../../p2p');
|
|
|
9
9
|
const {serviceTypeRegisterSignedOpen} = require('./../../service_types');
|
|
10
10
|
|
|
11
11
|
const defaultIntervalMs = 500;
|
|
12
|
-
const defaultPollTimes = 2 * 60 *
|
|
12
|
+
const defaultPollTimes = 2 * 60 * 30;
|
|
13
13
|
const defaultRequestTimeoutMs = 1000 * 60;
|
|
14
14
|
const {isArray} = Array;
|
|
15
15
|
const missingGroupPartners = 'NoGroupPartnersFound';
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"goldengate": "12.0.2",
|
|
18
18
|
"invoices": "2.2.3",
|
|
19
19
|
"ln-service": "54.9.0",
|
|
20
|
-
"ln-sync": "4.
|
|
20
|
+
"ln-sync": "4.3.0",
|
|
21
21
|
"psbt": "2.7.2",
|
|
22
22
|
"p2tr": "1.3.3",
|
|
23
23
|
"tiny-secp256k1": "2.2.1"
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"integration-tests": "tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 180 test/integration/*.js",
|
|
48
48
|
"test": "tap --branches=1 --functions=1 --lines=1 --statements=1 -t 60 test/actions/*.js test/balanced/*.js test/capacity/*.js test/client/*.js test/config/*.js test/p2p/*.js test/records/*.js test/respond/*.js test/server/*.js test/swaps/*.js test/services/*.js test/trades/*.js"
|
|
49
49
|
},
|
|
50
|
-
"version": "4.3.
|
|
50
|
+
"version": "4.3.1"
|
|
51
51
|
}
|