From 9795a7856b2f75fb94ab61467b71d941ed49b0fd Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Sat, 27 Apr 2024 18:14:17 -0700 Subject: [PATCH] lnwallet: add NextHeight to HtlcView --- lnwallet/channel.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lnwallet/channel.go b/lnwallet/channel.go index 096ad9e65..0093739b3 100644 --- a/lnwallet/channel.go +++ b/lnwallet/channel.go @@ -3100,6 +3100,10 @@ func HtlcIsDust(chanType channeldb.ChannelType, // HtlcView represents the "active" HTLCs at a particular point within the // history of the HTLC update log. type HtlcView struct { + // NextHeight is the height of the commitment transaction that will be + // created using this view. + NextHeight uint64 + // OurUpdates are our outgoing HTLCs. OurUpdates []*PaymentDescriptor @@ -3300,7 +3304,8 @@ func (lc *LightningChannel) evaluateHTLCView(view *HtlcView, ourBalance, // view. If any fee updates are found when evaluating the view, it will // be updated. newView := &HtlcView{ - FeePerKw: view.FeePerKw, + FeePerKw: view.FeePerKw, + NextHeight: nextHeight, } // We use two maps, one for the local log and one for the remote log to