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

Commit

Permalink
Upgrade lnd to
Browse files Browse the repository at this point in the history
  • Loading branch information
tanx committed Oct 29, 2018
1 parent 49c2c2c commit 52c73bd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions assets/rpc.proto
Original file line number Diff line number Diff line change
Expand Up @@ -1170,6 +1170,9 @@ message OpenChannelRequest {

/// The minimum number of confirmations each one of your outputs used for the funding transaction must satisfy.
int32 min_confs = 11 [json_name = "min_confs"];

/// Whether unconfirmed outputs should be used as inputs for the funding transaction.
bool spend_unconfirmed = 12 [json_name = "spend_unconfirmed"];
}
message OpenStatusUpdate {
oneof update {
Expand Down Expand Up @@ -1488,6 +1491,12 @@ message ChannelEdge {
}

message ChannelGraphRequest {
/**
Whether unannounced channels are included in the response or not. If set,
unannounced channels are included. Unannounced channels are both private
channels, and public channels that are not yet announced to the network.
*/
bool include_unannounced = 1 [json_name = "include_unannounced"];
}

/// Returns a new instance of the directed channel graph.
Expand Down
2 changes: 1 addition & 1 deletion assets/script/install_lnd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# versions
GO_TAG=1.11.1
LND_TAG=90fe860a3c985800014d9a6c9705cf7adb4bff85
LND_TAG=68d96488cc9f78e6aeb7d5c27822f384f756f335
BTCD_TAG=2a560b2036bee5e3679ec2133eb6520b2f195213

# create empty btcd.conf for btcctl
Expand Down

0 comments on commit 52c73bd

Please sign in to comment.