htlcswitch+routing: return IsHandled from AuxBandwidth

To make it more clear whether the external traffic shaper is handling a
channel or not, we return an explicit boolean.
This commit is contained in:
Oliver Gugger
2025-02-11 17:16:06 +01:00
parent 6531d45050
commit dac5de5ce9
5 changed files with 36 additions and 14 deletions

View File

@@ -904,9 +904,7 @@ func (m *mockLink) AuxBandwidth(lnwire.MilliSatoshi, lnwire.ShortChannelID,
fn.Option[tlv.Blob],
htlcswitch.AuxTrafficShaper) fn.Result[htlcswitch.OptionalBandwidth] {
return fn.Ok[htlcswitch.OptionalBandwidth](
fn.None[lnwire.MilliSatoshi](),
)
return fn.Ok(htlcswitch.OptionalBandwidth{})
}
// EligibleToForward returns the mock's configured eligibility.