ln-service 54.10.1 → 54.10.3
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
package/README.md
CHANGED
|
@@ -3244,6 +3244,8 @@ Get the settlement status of a received HTLC
|
|
|
3244
3244
|
|
|
3245
3245
|
Note: this method is not supported in LND versions 0.15.5 and below
|
|
3246
3246
|
|
|
3247
|
+
Requires LND running with `--store-final-htlc-resolutions` flag
|
|
3248
|
+
|
|
3247
3249
|
Requires `offchain:read` permissions
|
|
3248
3250
|
|
|
3249
3251
|
{
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"cors": "2.8.5",
|
|
12
12
|
"express": "4.18.2",
|
|
13
13
|
"invoices": "2.2.3",
|
|
14
|
-
"lightning": "7.1.
|
|
14
|
+
"lightning": "7.1.3",
|
|
15
15
|
"macaroon": "3.0.4",
|
|
16
16
|
"morgan": "1.10.0",
|
|
17
17
|
"ws": "8.12.1"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"bn.js": "5.2.1",
|
|
29
29
|
"bs58check": "3.0.1",
|
|
30
30
|
"ecpair": "2.1.0",
|
|
31
|
-
"ln-docker-daemons": "4.1.
|
|
31
|
+
"ln-docker-daemons": "4.1.2",
|
|
32
32
|
"p2tr": "1.3.3",
|
|
33
33
|
"portfinder": "1.0.32",
|
|
34
34
|
"psbt": "2.7.2",
|
|
35
|
-
"rimraf": "4.
|
|
35
|
+
"rimraf": "4.4.0",
|
|
36
36
|
"secp256k1": "5.0.0",
|
|
37
37
|
"tiny-secp256k1": "2.2.1",
|
|
38
38
|
"uuid": "9.0.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"integration-test-0.14.4": "DOCKER_LND_VERSION=v0.14.4-beta npm run test",
|
|
65
65
|
"test": "echo $DOCKER_LND_VERSION && tap -j 2 --branches=1 --functions=1 --lines=1 --statements=1 -t 200 test/autopilotrpc-integration/*.js test/chainrpc-integration/*.js test/integration/*.js test/invoicesrpc-integration/*.js test/peersrpc-integration/*.js test/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
|
|
66
66
|
},
|
|
67
|
-
"version": "54.10.
|
|
67
|
+
"version": "54.10.3"
|
|
68
68
|
}
|
|
@@ -32,7 +32,7 @@ test(`Get settlement status`, async ({end, equal, strictSame}) => {
|
|
|
32
32
|
|
|
33
33
|
if (code !== 404) {
|
|
34
34
|
equal(code, 501, 'Method unsupported');
|
|
35
|
-
equal(message, '
|
|
35
|
+
equal(message, 'LookupHtlcResolutionMethodUnsupported', 'Unsupported');
|
|
36
36
|
|
|
37
37
|
await kill({});
|
|
38
38
|
|