Skip to content

Commit eb822a5

Browse files
authored
Merge pull request #9504 from guggero/closedchannels
lnrpc+rpcserver: add custom channel data for closed channels
2 parents a53c6dd + 177bbd2 commit eb822a5

File tree

5 files changed

+86
-16
lines changed

5 files changed

+86
-16
lines changed

docs/release-notes/release-notes-0.19.0.md

+3
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ close transaction.
189189
RPC method now applies a default timeout of 60 seconds when the
190190
`timeout_seconds` field is not set or is explicitly set to 0.
191191

192+
* [`lnrpc.ClosedChannels` now also includes the `custom_channel_data` used by
193+
custom channels](https://github.com/lightningnetwork/lnd/pull/9504).
194+
192195
## lncli Additions
193196

194197
* [A pre-generated macaroon root key can now be specified in `lncli create` and

lnrpc/lightning.pb.go

+15-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lnrpc/lightning.proto

+4
Original file line numberDiff line numberDiff line change
@@ -1758,6 +1758,10 @@ message ChannelCloseSummary {
17581758

17591759
// The confirmed SCID for a zero-conf channel.
17601760
uint64 zero_conf_confirmed_scid = 15 [jstype = JS_STRING];
1761+
1762+
// The TLV encoded custom channel data records for this output, which might
1763+
// be set for custom channels.
1764+
bytes custom_channel_data = 16;
17611765
}
17621766

17631767
enum ResolutionType {

lnrpc/lightning.swagger.json

+5
Original file line numberDiff line numberDiff line change
@@ -4182,6 +4182,11 @@
41824182
"type": "string",
41834183
"format": "uint64",
41844184
"description": "The confirmed SCID for a zero-conf channel."
4185+
},
4186+
"custom_channel_data": {
4187+
"type": "string",
4188+
"format": "byte",
4189+
"description": "The TLV encoded custom channel data records for this output, which might\nbe set for custom channels."
41854190
}
41864191
}
41874192
},

rpcserver.go

+59-14
Original file line numberDiff line numberDiff line change
@@ -4028,6 +4028,13 @@ func (r *rpcServer) fetchPendingForceCloseChannels() (pendingForceClose,
40284028
historical.LocalCommitment.RemoteBalance.ToSatoshis(),
40294029
)
40304030

4031+
customChanBytes, err := encodeCustomChanData(historical)
4032+
if err != nil {
4033+
return nil, 0, fmt.Errorf("unable to encode "+
4034+
"open chan data: %w", err)
4035+
}
4036+
channel.CustomChannelData = customChanBytes
4037+
40314038
channel.Private = isPrivate(historical)
40324039
channel.Memo = string(historical.Memo)
40334040

@@ -4218,20 +4225,41 @@ func (r *rpcServer) fetchWaitingCloseChannels(
42184225
return nil, 0, err
42194226
}
42204227

4228+
customChanBytes, err := encodeCustomChanData(waitingClose)
4229+
if err != nil {
4230+
return nil, 0, fmt.Errorf("unable to encode "+
4231+
"open chan data: %w", err)
4232+
}
4233+
4234+
localCommit := waitingClose.LocalCommitment
4235+
chanStatus := waitingClose.ChanStatus()
42214236
channel := &lnrpc.PendingChannelsResponse_PendingChannel{
4222-
RemoteNodePub: hex.EncodeToString(pub),
4223-
ChannelPoint: chanPoint.String(),
4224-
Capacity: int64(waitingClose.Capacity),
4225-
LocalBalance: int64(waitingClose.LocalCommitment.LocalBalance.ToSatoshis()),
4226-
RemoteBalance: int64(waitingClose.LocalCommitment.RemoteBalance.ToSatoshis()),
4227-
LocalChanReserveSat: int64(waitingClose.LocalChanCfg.ChanReserve),
4228-
RemoteChanReserveSat: int64(waitingClose.RemoteChanCfg.ChanReserve),
4229-
Initiator: rpcInitiator(waitingClose.IsInitiator),
4230-
CommitmentType: rpcCommitmentType(waitingClose.ChanType),
4237+
RemoteNodePub: hex.EncodeToString(pub),
4238+
ChannelPoint: chanPoint.String(),
4239+
Capacity: int64(waitingClose.Capacity),
4240+
LocalBalance: int64(
4241+
localCommit.LocalBalance.ToSatoshis(),
4242+
),
4243+
RemoteBalance: int64(
4244+
localCommit.RemoteBalance.ToSatoshis(),
4245+
),
4246+
LocalChanReserveSat: int64(
4247+
waitingClose.LocalChanCfg.ChanReserve,
4248+
),
4249+
RemoteChanReserveSat: int64(
4250+
waitingClose.RemoteChanCfg.ChanReserve,
4251+
),
4252+
Initiator: rpcInitiator(
4253+
waitingClose.IsInitiator,
4254+
),
4255+
CommitmentType: rpcCommitmentType(
4256+
waitingClose.ChanType,
4257+
),
42314258
NumForwardingPackages: int64(len(fwdPkgs)),
4232-
ChanStatusFlags: waitingClose.ChanStatus().String(),
4259+
ChanStatusFlags: chanStatus.String(),
42334260
Private: isPrivate(waitingClose),
42344261
Memo: string(waitingClose.Memo),
4262+
CustomChannelData: customChanBytes,
42354263
}
42364264

42374265
var closingTxid, closingTxHex string
@@ -4517,6 +4545,16 @@ func (r *rpcServer) ClosedChannels(ctx context.Context,
45174545
resp.Channels = append(resp.Channels, channel)
45184546
}
45194547

4548+
err = fn.MapOptionZ(
4549+
r.server.implCfg.AuxDataParser,
4550+
func(parser AuxDataParser) error {
4551+
return parser.InlineParseCustomData(resp)
4552+
},
4553+
)
4554+
if err != nil {
4555+
return nil, fmt.Errorf("error parsing custom data: %w", err)
4556+
}
4557+
45204558
return resp, nil
45214559
}
45224560

@@ -4990,7 +5028,8 @@ func createRPCOpenChannel(r *rpcServer, dbChannel *channeldb.OpenChannel,
49905028
// createRPCClosedChannel creates an *lnrpc.ClosedChannelSummary from a
49915029
// *channeldb.ChannelCloseSummary.
49925030
func (r *rpcServer) createRPCClosedChannel(
4993-
dbChannel *channeldb.ChannelCloseSummary) (*lnrpc.ChannelCloseSummary, error) {
5031+
dbChannel *channeldb.ChannelCloseSummary) (*lnrpc.ChannelCloseSummary,
5032+
error) {
49945033

49955034
nodePub := dbChannel.RemotePub
49965035
nodeID := hex.EncodeToString(nodePub.SerializeCompressed())
@@ -5004,9 +5043,7 @@ func (r *rpcServer) createRPCClosedChannel(
50045043

50055044
// Lookup local and remote cooperative initiators. If these values
50065045
// are not known they will just return unknown.
5007-
openInit, closeInitiator, err = r.getInitiators(
5008-
&dbChannel.ChanPoint,
5009-
)
5046+
openInit, closeInitiator, err = r.getInitiators(&dbChannel.ChanPoint)
50105047
if err != nil {
50115048
return nil, err
50125049
}
@@ -5073,6 +5110,14 @@ func (r *rpcServer) createRPCClosedChannel(
50735110
channel.ZeroConfConfirmedScid = confirmedScid
50745111
}
50755112

5113+
// Finally we'll attempt to encode the custom channel data if
5114+
// any exists.
5115+
channel.CustomChannelData, err = encodeCustomChanData(histChan)
5116+
if err != nil {
5117+
return nil, fmt.Errorf("unable to encode open chan "+
5118+
"data: %w", err)
5119+
}
5120+
50765121
// Non-nil error not due to older versions of lnd.
50775122
default:
50785123
return nil, err

0 commit comments

Comments
 (0)