Fix blinded path min_final_expiry_delta check#2678
Merged
Conversation
The spec says that we must return an error if: - cltv_expiry < outgoing_cltv_value - cltv_expiry < current_block_height + min_final_cltv_expiry_delta For the second check, we actually tested if: - cltv_expiry < max(outgoing_cltv_value, current_block_height) + min_final_cltv_expiry_delta But that check should only verify that our `min_final_expiry_delta` requirement is fulfilled, which is unrelated to the `outgoing_cltv_value`. It was redundant with the first check, which already guarantees that intermediate nodes inside the blinded path cannot cheat by using a higher `cltv_expiry_delta` than what the recipient intended.
Codecov Report
❗ Your organization is not using the GitHub App Integration. As a result you may experience degraded service beginning May 15th. Please install the Github App Integration for your organization. Read more. @@ Coverage Diff @@
## master #2678 +/- ##
==========================================
- Coverage 85.88% 85.87% -0.01%
==========================================
Files 214 214
Lines 17591 17590 -1
Branches 728 716 -12
==========================================
- Hits 15108 15106 -2
- Misses 2483 2484 +1
|
thomash-acinq
approved these changes
Jun 8, 2023
Contributor
thomash-acinq
left a comment
There was a problem hiding this comment.
I was a bit confused at first but actually all we care about is that the delta between now and when the addHTLC expires is at least nodeParams.channelConf.minFinalExpiryDelta. So this looks good.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The spec says that we must return an error if:
For the second check, we actually tested if:
But that check should only verify that our
min_final_expiry_deltarequirement is fulfilled, which is unrelated to theoutgoing_cltv_value.It was redundant with the first check, which already guarantees that intermediate nodes inside the blinded path cannot cheat by using a higher
cltv_expiry_deltathan what the recipient intended.For context, see lightning/bolts#1066 and https://gist.github.com/t-bast/b1371d357a2c5f3e8c09514a62db7079