diff --git a/fundingmanager.go b/fundingmanager.go index e87dd9f11..558757347 100644 --- a/fundingmanager.go +++ b/fundingmanager.go @@ -2359,6 +2359,9 @@ func (f *fundingManager) annAfterSixConfs(completeChan *channeldb.OpenChannel, if fwdMaxHTLC > capacityMSat { fwdMaxHTLC = capacityMSat } + if fwdMaxHTLC > MaxPaymentMSat { + fwdMaxHTLC = MaxPaymentMSat + } // Create and broadcast the proofs required to make this channel // public and usable for other nodes for routing.