mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-04 09:58:39 +02:00
Merge pull request #6167 from madskrogh/pendingchannels-private-status
lnrpc: add Private field to PendingChannelsResponse
This commit is contained in:
commit
3ff849d15b
@ -13,6 +13,9 @@
|
||||
* Add [chan_point flag](https://github.com/lightningnetwork/lnd/pull/6152)
|
||||
to closechannel command.
|
||||
|
||||
* Add [private status](https://github.com/lightningnetwork/lnd/pull/6167)
|
||||
to pendingchannels response.
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
* [Fixed an inactive invoice subscription not removed from invoice
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2315,6 +2315,9 @@ message PendingChannelsResponse {
|
||||
|
||||
// A set of flags showing the current state of the channel.
|
||||
string chan_status_flags = 11;
|
||||
|
||||
// Whether this channel is advertised to the network or not.
|
||||
bool private = 12;
|
||||
}
|
||||
|
||||
message PendingOpenChannel {
|
||||
|
@ -2761,6 +2761,10 @@
|
||||
"chan_status_flags": {
|
||||
"type": "string",
|
||||
"description": "A set of flags showing the current state of the channel."
|
||||
},
|
||||
"private": {
|
||||
"type": "boolean",
|
||||
"description": "Whether this channel is advertised to the network or not."
|
||||
}
|
||||
}
|
||||
},
|
||||
|
33
rpcserver.go
33
rpcserver.go
@ -3236,6 +3236,7 @@ func (r *rpcServer) fetchPendingOpenChannels() (pendingOpenChannels, error) {
|
||||
RemoteChanReserveSat: int64(pendingChan.RemoteChanCfg.ChanReserve),
|
||||
Initiator: rpcInitiator(pendingChan.IsInitiator),
|
||||
CommitmentType: rpcCommitmentType(pendingChan.ChanType),
|
||||
Private: isPrivate(pendingChan),
|
||||
},
|
||||
CommitWeight: commitWeight,
|
||||
CommitFee: int64(localCommitment.CommitFee),
|
||||
@ -3323,6 +3324,8 @@ func (r *rpcServer) fetchPendingForceCloseChannels() (pendingForceClose,
|
||||
historical.LocalCommitment.RemoteBalance.ToSatoshis(),
|
||||
)
|
||||
|
||||
channel.Private = isPrivate(historical)
|
||||
|
||||
// If the error is non-nil, and not due to older versions of lnd
|
||||
// not persisting historical channels, return it.
|
||||
default:
|
||||
@ -3518,6 +3521,7 @@ func (r *rpcServer) fetchWaitingCloseChannels() (waitingCloseChannels,
|
||||
CommitmentType: rpcCommitmentType(waitingClose.ChanType),
|
||||
NumForwardingPackages: int64(len(fwdPkgs)),
|
||||
ChanStatusFlags: waitingClose.ChanStatus().String(),
|
||||
Private: isPrivate(waitingClose),
|
||||
}
|
||||
|
||||
waitingCloseResp := &lnrpc.PendingChannelsResponse_WaitingCloseChannel{
|
||||
@ -3804,8 +3808,6 @@ func (r *rpcServer) ListChannels(ctx context.Context,
|
||||
|
||||
resp := &lnrpc.ListChannelsResponse{}
|
||||
|
||||
graph := r.server.graphDB
|
||||
|
||||
dbChannels, err := r.server.chanStateDB.FetchAllOpenChannels()
|
||||
if err != nil {
|
||||
return nil, err
|
||||
@ -3842,7 +3844,7 @@ func (r *rpcServer) ListChannels(ctx context.Context,
|
||||
// Next, we'll determine whether we should add this channel to
|
||||
// our list depending on the type of channels requested to us.
|
||||
isActive := peerOnline && linkActive
|
||||
channel, err := createRPCOpenChannel(r, graph, dbChannel, isActive)
|
||||
channel, err := createRPCOpenChannel(r, dbChannel, isActive)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
@ -3902,17 +3904,23 @@ func createChannelConstraint(
|
||||
}
|
||||
}
|
||||
|
||||
// isPrivate evaluates the ChannelFlags of the db channel to determine if the
|
||||
// channel is private or not.
|
||||
func isPrivate(dbChannel *channeldb.OpenChannel) bool {
|
||||
if dbChannel == nil {
|
||||
return false
|
||||
}
|
||||
return dbChannel.ChannelFlags&lnwire.FFAnnounceChannel != 1
|
||||
}
|
||||
|
||||
// createRPCOpenChannel creates an *lnrpc.Channel from the *channeldb.Channel.
|
||||
func createRPCOpenChannel(r *rpcServer, graph *channeldb.ChannelGraph,
|
||||
dbChannel *channeldb.OpenChannel, isActive bool) (*lnrpc.Channel, error) {
|
||||
func createRPCOpenChannel(r *rpcServer, dbChannel *channeldb.OpenChannel,
|
||||
isActive bool) (*lnrpc.Channel, error) {
|
||||
|
||||
nodePub := dbChannel.IdentityPub
|
||||
nodeID := hex.EncodeToString(nodePub.SerializeCompressed())
|
||||
chanPoint := dbChannel.FundingOutpoint
|
||||
|
||||
// Next, we'll determine whether the channel is public or not.
|
||||
isPublic := dbChannel.ChannelFlags&lnwire.FFAnnounceChannel != 0
|
||||
|
||||
// As this is required for display purposes, we'll calculate
|
||||
// the weight of the commitment transaction. We also add on the
|
||||
// estimated weight of the witness to calculate the weight of
|
||||
@ -3944,7 +3952,7 @@ func createRPCOpenChannel(r *rpcServer, graph *channeldb.ChannelGraph,
|
||||
|
||||
channel := &lnrpc.Channel{
|
||||
Active: isActive,
|
||||
Private: !isPublic,
|
||||
Private: isPrivate(dbChannel),
|
||||
RemotePubkey: nodeID,
|
||||
ChannelPoint: chanPoint.String(),
|
||||
ChanId: dbChannel.ShortChannelID.ToUint64(),
|
||||
@ -4330,8 +4338,6 @@ func (r *rpcServer) SubscribeChannelEvents(req *lnrpc.ChannelEventSubscription,
|
||||
// the server, or client exits.
|
||||
defer channelEventSub.Cancel()
|
||||
|
||||
graph := r.server.graphDB
|
||||
|
||||
for {
|
||||
select {
|
||||
// A new update has been sent by the channel router, we'll
|
||||
@ -4351,8 +4357,9 @@ func (r *rpcServer) SubscribeChannelEvents(req *lnrpc.ChannelEventSubscription,
|
||||
},
|
||||
}
|
||||
case channelnotifier.OpenChannelEvent:
|
||||
channel, err := createRPCOpenChannel(r, graph,
|
||||
event.Channel, true)
|
||||
channel, err := createRPCOpenChannel(
|
||||
r, event.Channel, true,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user