What changed, and why it matters
This commit is a trivial documentation-only fix in a source code comment. It adds a missing comment-closing marker so that a block of text describing protocol feature bits is properly formatted. No executable code, logic, or behavior was changed.
No security action needed. Treat as normal code-quality/documentation cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In common/features.h, a C-style comment block listing BOLT feature bits was missing its closing ‘*/’. The patch inserts the closing marker before a new sub-comment labeled ‘BOLT-splice #9’. This is purely a comment formatting correction; no macros, function signatures, or compiled code are affected.
Changed components
common/features.h (comment only)Inspect captured patch +2 / −0
diff --git a/common/features.h b/common/features.h
index ddc1eeb2..9a9783d9 100644
--- a/common/features.h
+++ b/common/features.h
@@ -123,6 +123,8 @@ struct feature_set *feature_set_dup(const tal_t *ctx,
* | 48/49 | `option_payment_metadata` |... 9 ...
* | 50/51 | `option_zeroconf` | ... IN ...
* | 60/61 | `option_simple_close` |... IN ...
+ */
+/* BOLT-splice #9:
* | 62/63 | `option_splice` |... IN ...
*/
#define OPT_DATA_LOSS_PROTECT 0
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.