Skip to content
This repository was archived by the owner on Feb 23, 2021. It is now read-only.

Commit 3fc4bad

Browse files
authored
Merge pull request #790 from lightninglabs/upgrade-lnd
Upgrade to lnd@721e9a2a90eb6a3eb985b02af6c56762026aa16f
2 parents 35b610d + 49e84d5 commit 3fc4bad

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

assets/rpc.proto

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ service Lightning {
392392
*/
393393
rpc AbandonChannel (AbandonChannelRequest) returns (AbandonChannelResponse) {
394394
option (google.api.http) = {
395-
delete: "/v1/channels/{channel_point.funding_txid_str}/{channel_point.output_index}"
395+
delete: "/v1/channels/abandon/{channel_point.funding_txid_str}/{channel_point.output_index}"
396396
};
397397
}
398398

@@ -1090,6 +1090,8 @@ message GetInfoResponse {
10901090
/// The version of the LND software that the node is running.
10911091
string version = 14 [ json_name = "version" ];
10921092

1093+
/// Number of inactive channels
1094+
uint32 num_inactive_channels = 15 [json_name = "num_inactive_channels"];
10931095
}
10941096

10951097
message ConfirmationUpdate {

assets/script/install_lnd.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# versions
44
GO_TAG=1.11.1
5-
LND_TAG=c0fadcc89b2f09c193e5c313001582b562793615
5+
LND_TAG=721e9a2a90eb6a3eb985b02af6c56762026aa16f
66
BTCD_TAG=2a560b2036bee5e3679ec2133eb6520b2f195213
77

88
# create empty btcd.conf for btcctl

0 commit comments

Comments
 (0)