discovery+graph: get inbound fee directly from ChannelUpdate

Remove the previously added TODOs which would extract InboundFee info
from the ExtraOpaqueData of a ChannelUpdate at the time of
ChannelEdgePolicy construction. These can now be replaced by using the
newly added InboundFee record on the ChannelUpdate message.
This commit is contained in:
Elle Mouton
2025-06-04 12:56:55 +02:00
parent 420001a98c
commit 6d8bc63ad6
3 changed files with 11 additions and 38 deletions

View File

@@ -13,6 +13,7 @@ import (
"github.com/lightningnetwork/lnd/keychain"
"github.com/lightningnetwork/lnd/lnwallet"
"github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/tlv"
"github.com/pkg/errors"
)
@@ -138,7 +139,7 @@ func ExtractChannelUpdate(ownerPubKey []byte,
func UnsignedChannelUpdateFromEdge(info *models.ChannelEdgeInfo,
policy *models.ChannelEdgePolicy) *lnwire.ChannelUpdate1 {
return &lnwire.ChannelUpdate1{
update := &lnwire.ChannelUpdate1{
ChainHash: info.ChainHash,
ShortChannelID: lnwire.NewShortChanIDFromInt(policy.ChannelID),
Timestamp: uint32(policy.LastUpdate.Unix()),
@@ -151,6 +152,13 @@ func UnsignedChannelUpdateFromEdge(info *models.ChannelEdgeInfo,
FeeRate: uint32(policy.FeeProportionalMillionths),
ExtraOpaqueData: policy.ExtraOpaqueData,
}
policy.InboundFee.WhenSome(func(fee lnwire.Fee) {
update.InboundFee = tlv.SomeRecordT(
tlv.NewRecordT[tlv.TlvType55555, lnwire.Fee](fee),
)
})
return update
}
// ChannelUpdateFromEdge reconstructs a signed ChannelUpdate from the given edge