htlcswitch: when generating routes in test payload for last hop in absolute timeout

This commit is contained in:
Olaoluwa Osuntokun 2017-09-12 21:31:55 +02:00
parent b07e7fb7cc
commit 246164e290
No known key found for this signature in database
GPG Key ID: 964EA263DD637C21

@ -361,9 +361,9 @@ func generateHops(payAmt lnwire.MilliSatoshi, startingHeight uint32,
} }
// If this is the last, hop, then the time lock will be their // If this is the last, hop, then the time lock will be their
// specified delta policy. // specified delta policy plus our starting height.
timeLock := lastHop.cfg.FwrdingPolicy.TimeLockDelta totalTimelock += lastHop.cfg.FwrdingPolicy.TimeLockDelta
totalTimelock += timeLock timeLock := totalTimelock
// Otherwise, the outgoing time lock should be the incoming // Otherwise, the outgoing time lock should be the incoming
// timelock minus their specified delta. // timelock minus their specified delta.