mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-04 01:36:24 +01:00
router: use SetID as identifier for SendToRoute AMP-payments
This commit is contained in:
parent
f07c9d002c
commit
56a2c65477
1 changed files with 7 additions and 0 deletions
|
@ -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{
|
||||
|
|
Loading…
Add table
Reference in a new issue