-
Notifications
You must be signed in to change notification settings - Fork 942
Bolt catchup 25.09 #8377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rustyrussell
wants to merge
8
commits into
ElementsProject:master
Choose a base branch
from
rustyrussell:guilt/bolt-catchup-25.08
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Bolt catchup 25.09 #8377
rustyrussell
wants to merge
8
commits into
ElementsProject:master
from
rustyrussell:guilt/bolt-catchup-25.08
Conversation
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
It was already disabled by Dusty due to a number conflict with splicing, and the proposal probably needs updating to use quiescence now that is merged. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> Changelog-EXPERIMENTAL: The non-functional `experimental-upgrade-protocol` config option.
Dusty patched peer_wire.csv directly, breaking regeneration `make extract-peer-csv`. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
They weren't formatted correctly for bolts/tools/extract-formats.py until this commit, so we had to patch them in manually. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
…tputs. Doesn't change anything for us, since we will already fulfull the incoming HTLCs if we can, but good to note. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
These checks are a SHOULD, but implementing them helps avoid anyone making such weird things in future. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Spec got stricter. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2b9dfa0
to
16f0b3d
Compare
It's about to be made compulsory. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Make the payment secret field ('s') mandatory for BOLT11 payment requests, implementing the requirement specified in BOLT11 spec PR ElementsProject#1242 (lightning/bolts#1242). This security enhancement prevents payment probing attacks by requiring all invoices to include payment secrets. Changes include: 1. Adding validation in bolt11_decode_nosig() to reject invoices without the 's' field 2. Adding payment secrets to all test vectors 3. Updating expected encoded values in test cases to include payment secrets 4. Adding a specific test case that verifies proper rejection of invoices missing the payment secret field Changelog-Changed: Made payment secret ('s' field) mandatory in BOLT11 payment requests for improved security.
16f0b3d
to
72b67d5
Compare
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.
This incorporates #8221 which needed to BOLT update so the new BOLT quote was detected as valid.
The only user-visible change is the tightened bolt11 parsing requirements, only one of which is Changelog worthy.
Closes: #8221