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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Versions
2
2
 
3
- ## Version 4.3.0
3
+ ## Version 4.3.1
4
4
 
5
5
  - `createGroupChannel`: Show members that are present
6
6
 
@@ -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 * 5;
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';
@@ -4,7 +4,7 @@ const {connectPeer} = require('ln-sync');
4
4
  const {returnResult} = require('asyncjs-util');
5
5
 
6
6
  const interval = 500;
7
- const times = 2 * 60 * 5;
7
+ const times = 2 * 60 * 30;
8
8
 
9
9
  /** Peer up with group channel partners
10
10
 
@@ -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 * 10;
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 * 10;
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 * 10;
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.2.0",
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.0"
50
+ "version": "4.3.1"
51
51
  }