fix formatting: remove extra spaces before commas in serde_opcodes test
What changed, and why it matters
This commit is a purely cosmetic formatting fix in a test file. It removes extra spaces that accidentally appeared before commas in a list of Bitcoin script operation codes. There is no functional code change and no security relevance.
No action needed; this is a non-security formatting cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies only bitcoin/tests/serde_opcodes.rs, changing four lines in a test list from ‘OP_NAME ,’ to ‘OP_NAME,’. This is a whitespace/style correction inside a test; no runtime behavior, API, or logic is altered.
Changed components
bitcoin/tests/serde_opcodes.rsInspect captured patch +4 / −4
diff --git a/bitcoin/tests/serde_opcodes.rs b/bitcoin/tests/serde_opcodes.rs
index 0b662c52..cf84bfbc 100644
--- a/bitcoin/tests/serde_opcodes.rs
+++ b/bitcoin/tests/serde_opcodes.rs
@@ -179,10 +179,10 @@ fn serde_regression_opcodes() {
OP_NUMEQUAL,
OP_NUMEQUALVERIFY,
OP_NUMNOTEQUAL,
- OP_LESSTHAN ,
- OP_GREATERTHAN ,
- OP_LESSTHANOREQUAL ,
- OP_GREATERTHANOREQUAL ,
+ OP_LESSTHAN,
+ OP_GREATERTHAN,
+ OP_LESSTHANOREQUAL,
+ OP_GREATERTHANOREQUAL,
OP_MIN,
OP_MAX,
OP_WITHIN,
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.