lightning 9.4.1 → 9.5.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,5 +1,13 @@
|
|
|
1
1
|
# Versions
|
|
2
2
|
|
|
3
|
+
## 9.5.1
|
|
4
|
+
|
|
5
|
+
- `getPendingChannels`: Fix returning closing transaction id for waiting close
|
|
6
|
+
|
|
7
|
+
## 9.5.0
|
|
8
|
+
|
|
9
|
+
- `getWalletInfo`: Add support for LND 0.16.3
|
|
10
|
+
|
|
3
11
|
## 9.4.1
|
|
4
12
|
|
|
5
13
|
- `getChannels`: Add `description` to show the channel description
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"1a3194d302f33bb52823297d9d7f75cd37516053": "0.10.0-beta",
|
|
24
24
|
"1e511be523eb8e97c4e2d9c89a7a263963a3929f": "0.14.2-beta",
|
|
25
25
|
"3ae46d81f4a2edad06ef778b2940d9b06386d93b": "0.11.0-beta",
|
|
26
|
+
"47483f1c66ae6fbb2e03ff29f9bc9b80c611c027": "0.16.3-beta",
|
|
26
27
|
"4f567577db9d85b6f392f960b3aabddcad3cd02c": "0.13.3-beta",
|
|
27
28
|
"51df3e5b1ea2f1f749652cecf26e7471d35aa629": "0.16.0-beta",
|
|
28
29
|
"52bb3f33707b81972c67937c7a89addcdf00991c": "0.10.1-beta",
|
|
@@ -263,6 +263,7 @@ module.exports = args => {
|
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
sum[pending.channel.channel_point] = {
|
|
266
|
+
close_transaction_id: pending.closing_txid,
|
|
266
267
|
pending_balance: Number(pending.limbo_balance),
|
|
267
268
|
};
|
|
268
269
|
|
|
@@ -282,7 +283,7 @@ module.exports = args => {
|
|
|
282
283
|
const [txId, vout] = channel.channel_point.split(outpointSeparator);
|
|
283
284
|
const wait = waitClosing[channel.channel_point] || {};
|
|
284
285
|
|
|
285
|
-
const endTx = forced.close_transaction_id;
|
|
286
|
+
const endTx = forced.close_transaction_id || wait.close_transaction_id;
|
|
286
287
|
const pendingTokens = wait.pending_balance || forced.pending_balance;
|
|
287
288
|
|
|
288
289
|
return {
|
package/package.json
CHANGED