htlcswitch+routing: add htlc blob to ShouldHandleTraffic

Whether we should let the aux bandwidth manager decide what the
bandwidth of a channel is should also depend on whether the HTLC is a
custom HTLC, not just the channel.
This commit is contained in:
Oliver Gugger
2025-04-17 11:52:56 +02:00
parent cf0e0ff32c
commit 5fb0f43172
3 changed files with 3 additions and 3 deletions

View File

@@ -140,7 +140,7 @@ type mockTrafficShaper struct{}
// by the provided channel ID may have external mechanisms that would
// allow it to carry out the payment.
func (*mockTrafficShaper) ShouldHandleTraffic(_ lnwire.ShortChannelID,
_ fn.Option[tlv.Blob]) (bool, error) {
_, _ fn.Option[tlv.Blob]) (bool, error) {
return true, nil
}