router: use SetID as identifier for SendToRoute AMP-payments

This commit is contained in:
Johan T. Halseth 2021-04-08 21:07:15 +02:00
parent f07c9d002c
commit 56a2c65477
No known key found for this signature in database
GPG Key ID: 15BAADA29DA20D26

View File

@ -1970,6 +1970,13 @@ func (r *ChannelRouter) SendToRoute(htlcHash lntypes.Hash, rt *route.Route) (
// hash as used for this HTLC.
paymentIdentifier := htlcHash
// For AMP-payments, we'll use the setID as the unique ID for the
// overall payment.
amp := finalHop.AMP
if amp != nil {
paymentIdentifier = amp.SetID()
}
// Record this payment hash with the ControlTower, ensuring it is not
// already in-flight.
info := &channeldb.PaymentCreationInfo{