paid-services 4.2.0 → 4.2.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/CHANGELOG.md +1 -1
- package/package.json +14 -14
- package/test/integration/test_group_pair.js +0 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -7,27 +7,27 @@
|
|
|
7
7
|
"url": "https://github.com/alexbosworth/paid-services/issues"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
|
-
"@alexbosworth/fiat": "1.0.
|
|
10
|
+
"@alexbosworth/fiat": "1.0.4",
|
|
11
11
|
"async": "3.2.4",
|
|
12
|
-
"asyncjs-util": "1.2.
|
|
12
|
+
"asyncjs-util": "1.2.11",
|
|
13
13
|
"bech32": "2.0.0",
|
|
14
|
-
"bolt01": "1.2.
|
|
15
|
-
"bolt07": "1.8.
|
|
14
|
+
"bolt01": "1.2.6",
|
|
15
|
+
"bolt07": "1.8.3",
|
|
16
16
|
"ecpair": "2.1.0",
|
|
17
|
-
"goldengate": "12.0.
|
|
18
|
-
"invoices": "2.2.
|
|
19
|
-
"ln-service": "54.
|
|
20
|
-
"ln-sync": "4.
|
|
21
|
-
"psbt": "2.7.
|
|
22
|
-
"p2tr": "1.3.
|
|
17
|
+
"goldengate": "12.0.2",
|
|
18
|
+
"invoices": "2.2.3",
|
|
19
|
+
"ln-service": "54.9.0",
|
|
20
|
+
"ln-sync": "4.2.0",
|
|
21
|
+
"psbt": "2.7.2",
|
|
22
|
+
"p2tr": "1.3.3",
|
|
23
23
|
"tiny-secp256k1": "2.2.1"
|
|
24
24
|
},
|
|
25
25
|
"description": "Lightning Paid Services library",
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@alexbosworth/tap": "15.0.
|
|
28
|
-
"ln-docker-daemons": "4.0.
|
|
27
|
+
"@alexbosworth/tap": "15.0.12",
|
|
28
|
+
"ln-docker-daemons": "4.0.4",
|
|
29
29
|
"mock-lnd": "1.4.4",
|
|
30
|
-
"secp256k1": "
|
|
30
|
+
"secp256k1": "5.0.0"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
33
|
"node": ">=14"
|
|
@@ -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.2.
|
|
50
|
+
"version": "4.2.2"
|
|
51
51
|
}
|
|
@@ -119,8 +119,6 @@ test(`Setup joint channel group`, async ({end, equal, strictSame}) => {
|
|
|
119
119
|
// Finished, wait for the channels to activate
|
|
120
120
|
await generate({count});
|
|
121
121
|
|
|
122
|
-
const {getPendingChannels} = require('ln-service');
|
|
123
|
-
|
|
124
122
|
await asyncRetry({interval, times}, async () => {
|
|
125
123
|
await generate({});
|
|
126
124
|
|