@@ -4028,6 +4028,13 @@ func (r *rpcServer) fetchPendingForceCloseChannels() (pendingForceClose,
4028
4028
historical .LocalCommitment .RemoteBalance .ToSatoshis (),
4029
4029
)
4030
4030
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
+
4031
4038
channel .Private = isPrivate (historical )
4032
4039
channel .Memo = string (historical .Memo )
4033
4040
@@ -4218,20 +4225,41 @@ func (r *rpcServer) fetchWaitingCloseChannels(
4218
4225
return nil , 0 , err
4219
4226
}
4220
4227
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 ()
4221
4236
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
+ ),
4231
4258
NumForwardingPackages : int64 (len (fwdPkgs )),
4232
- ChanStatusFlags : waitingClose . ChanStatus () .String (),
4259
+ ChanStatusFlags : chanStatus .String (),
4233
4260
Private : isPrivate (waitingClose ),
4234
4261
Memo : string (waitingClose .Memo ),
4262
+ CustomChannelData : customChanBytes ,
4235
4263
}
4236
4264
4237
4265
var closingTxid , closingTxHex string
@@ -4517,6 +4545,16 @@ func (r *rpcServer) ClosedChannels(ctx context.Context,
4517
4545
resp .Channels = append (resp .Channels , channel )
4518
4546
}
4519
4547
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
+
4520
4558
return resp , nil
4521
4559
}
4522
4560
@@ -4990,7 +5028,8 @@ func createRPCOpenChannel(r *rpcServer, dbChannel *channeldb.OpenChannel,
4990
5028
// createRPCClosedChannel creates an *lnrpc.ClosedChannelSummary from a
4991
5029
// *channeldb.ChannelCloseSummary.
4992
5030
func (r * rpcServer ) createRPCClosedChannel (
4993
- dbChannel * channeldb.ChannelCloseSummary ) (* lnrpc.ChannelCloseSummary , error ) {
5031
+ dbChannel * channeldb.ChannelCloseSummary ) (* lnrpc.ChannelCloseSummary ,
5032
+ error ) {
4994
5033
4995
5034
nodePub := dbChannel .RemotePub
4996
5035
nodeID := hex .EncodeToString (nodePub .SerializeCompressed ())
@@ -5004,9 +5043,7 @@ func (r *rpcServer) createRPCClosedChannel(
5004
5043
5005
5044
// Lookup local and remote cooperative initiators. If these values
5006
5045
// 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 )
5010
5047
if err != nil {
5011
5048
return nil , err
5012
5049
}
@@ -5073,6 +5110,14 @@ func (r *rpcServer) createRPCClosedChannel(
5073
5110
channel .ZeroConfConfirmedScid = confirmedScid
5074
5111
}
5075
5112
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
+
5076
5121
// Non-nil error not due to older versions of lnd.
5077
5122
default :
5078
5123
return nil , err
0 commit comments