htlcswitch+routing: PaymentBandwidth accepts channel peer pubkey argument

This commit is contained in:
George Tsagkarelis
2025-06-26 12:11:56 +02:00
committed by Oliver Gugger
parent ab036990b5
commit 128b23e813
3 changed files with 13 additions and 3 deletions

View File

@@ -153,7 +153,7 @@ func (*mockTrafficShaper) ShouldHandleTraffic(_ lnwire.ShortChannelID,
// ShouldHandleTraffic method should be called first.
func (*mockTrafficShaper) PaymentBandwidth(_, _, _ fn.Option[tlv.Blob],
linkBandwidth, _ lnwire.MilliSatoshi,
_ lnwallet.AuxHtlcView) (lnwire.MilliSatoshi, error) {
_ lnwallet.AuxHtlcView, _ route.Vertex) (lnwire.MilliSatoshi, error) {
return linkBandwidth, nil
}