ln-service 53.7.0 → 53.7.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/README.md +2 -2
- package/index.js +2 -2
- package/package.json +3 -2
- package/test/integration/test_get_pending_force.js +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ through npm.
|
|
|
9
9
|
|
|
10
10
|
Supported LND versions:
|
|
11
11
|
|
|
12
|
-
- v0.14.0-beta to v0.14.
|
|
12
|
+
- v0.14.0-beta to v0.14.2-beta
|
|
13
13
|
- v0.13.0-beta to v0.13.4-beta
|
|
14
14
|
- v0.12.0-beta to v0.12.1-beta
|
|
15
15
|
- v0.11.0-beta to v0.11.1-beta
|
|
@@ -3401,7 +3401,7 @@ Requires `onchain:write` permission
|
|
|
3401
3401
|
|
|
3402
3402
|
Requires LND built with `walletrpc` tag
|
|
3403
3403
|
|
|
3404
|
-
This method is not supported in LND 0.14.
|
|
3404
|
+
This method is not supported in LND 0.14.2 and below
|
|
3405
3405
|
|
|
3406
3406
|
{
|
|
3407
3407
|
lnd: <Authenticated LND API Object>
|
package/index.js
CHANGED
|
@@ -91,7 +91,7 @@ const {requestChainFeeIncrease} = require('lightning');
|
|
|
91
91
|
const {restrictMacaroon} = require('./macaroons');
|
|
92
92
|
const {revokeAccess} = require('lightning');
|
|
93
93
|
const {routeFromChannels} = require('bolt07');
|
|
94
|
-
const {sendMessageToPeer} = require('lightning
|
|
94
|
+
const {sendMessageToPeer} = require('lightning');
|
|
95
95
|
const {sendToChainAddress} = require('lightning');
|
|
96
96
|
const {sendToChainAddresses} = require('lightning');
|
|
97
97
|
const {sendToChainOutputScripts} = require('lightning');
|
|
@@ -118,7 +118,7 @@ const {subscribeToPastPayments} = require('lightning');
|
|
|
118
118
|
const {subscribeToPayViaDetails} = require('lightning');
|
|
119
119
|
const {subscribeToPayViaRequest} = require('lightning');
|
|
120
120
|
const {subscribeToPayViaRoutes} = require('lightning');
|
|
121
|
-
const {subscribeToPeerMessages} = require('lightning
|
|
121
|
+
const {subscribeToPeerMessages} = require('lightning');
|
|
122
122
|
const {subscribeToPeers} = require('lightning');
|
|
123
123
|
const {subscribeToProbeForRoute} = require('lightning');
|
|
124
124
|
const {subscribeToRpcRequests} = require('lightning');
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"cors": "2.8.5",
|
|
12
12
|
"express": "4.17.2",
|
|
13
13
|
"invoices": "2.0.3",
|
|
14
|
-
"lightning": "5.6.
|
|
14
|
+
"lightning": "5.6.1",
|
|
15
15
|
"macaroon": "3.0.4",
|
|
16
16
|
"morgan": "1.10.0",
|
|
17
17
|
"ws": "8.4.2"
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"scripts": {
|
|
56
56
|
"integration-test-daily-lnd-build": "DOCKER_LND_VERSION=daily-testing-only npm run test",
|
|
57
|
+
"integration-test-0.14.2": "DOCKER_LND_VERSION=v0.14.2-beta npm run test",
|
|
57
58
|
"integration-test-0.14.1": "DOCKER_LND_VERSION=v0.14.1-beta npm run test",
|
|
58
59
|
"integration-test-0.14.0": "DOCKER_LND_VERSION=v0.14.0-beta npm run test",
|
|
59
60
|
"integration-test-0.13.4": "DOCKER_LND_VERSION=v0.13.4-beta npm run test",
|
|
@@ -65,5 +66,5 @@
|
|
|
65
66
|
"integration-test-0.12.0": "DOCKER_LND_VERSION=v0.12.0-beta npm run test",
|
|
66
67
|
"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/routerrpc-integration/*.js test/signerrpc-integration/*.js test/tower_clientrpc-integration/*.js test/tower_serverrpc-integration/*.js test/walletrpc-integration/*.js"
|
|
67
68
|
},
|
|
68
|
-
"version": "53.7.
|
|
69
|
+
"version": "53.7.1"
|
|
69
70
|
}
|
|
@@ -178,7 +178,7 @@ test(`Get pending channels`, async ({end, equal}) => {
|
|
|
178
178
|
equal(forceClose.received, 0, 'No receive amount');
|
|
179
179
|
equal(forceClose.recovered_tokens, undefined, 'No recovered amount');
|
|
180
180
|
|
|
181
|
-
// LND 0.14.
|
|
181
|
+
// LND 0.14.2 and below do not support remote balance info
|
|
182
182
|
if (!!forceClose.remote_balance) {
|
|
183
183
|
equal(forceClose.remote_balance, giftTokens, 'Got gift remote balance');
|
|
184
184
|
} else {
|