channel: add ResolutionBlob to Incoming+Outgoing HtlcResolution

Similar to the other blobs we have for the commitment output force close
resolution, these blobs will be used to ensure that we have everything
needed to sweep aux HTLCs.
This commit is contained in:
Olaoluwa Osuntokun 2024-10-15 19:10:38 -07:00
parent 98b41c6576
commit 08d0aa2368
No known key found for this signature in database
GPG Key ID: 90525F7DEEE0AD86

View File

@ -6959,6 +6959,11 @@ type IncomingHtlcResolution struct {
// necessary items required to spend the sole output of the above // necessary items required to spend the sole output of the above
// transaction. // transaction.
SweepSignDesc input.SignDescriptor SweepSignDesc input.SignDescriptor
// ResolutionBlob is a blob used for aux channels that permits a
// spender of the output to properly resolve it in the case of a force
// close.
ResolutionBlob fn.Option[tlv.Blob]
} }
// OutgoingHtlcResolution houses the information necessary to sweep any // OutgoingHtlcResolution houses the information necessary to sweep any
@ -7008,6 +7013,11 @@ type OutgoingHtlcResolution struct {
// necessary items required to spend the sole output of the above // necessary items required to spend the sole output of the above
// transaction. // transaction.
SweepSignDesc input.SignDescriptor SweepSignDesc input.SignDescriptor
// ResolutionBlob is a blob used for aux channels that permits a
// spender of the output to properly resolve it in the case of a force
// close.
ResolutionBlob fn.Option[tlv.Blob]
} }
// HtlcResolutions contains the items necessary to sweep HTLC's on chain // HtlcResolutions contains the items necessary to sweep HTLC's on chain