askrene: remove unnecessary print in test
What changed, and why it matters
This commit simply removes a leftover debug print statement from a test file. It has no effect on the actual Core Lightning software users run, no security implications, and does not change any behavior beyond making one test slightly less noisy in its output.
No action needed; this is a benign test cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff deletes a single line print(f"XXX: {n}") from tests/test_askrene.py inside a test function. This is a cleanup of test-only debug output. No production code, network handling, cryptography, or logic is modified.
Changed components
tests/test_askrene.pyInspect captured patch +0 / −1
diff --git a/tests/test_askrene.py b/tests/test_askrene.py
index 77fa3159..71366f06 100644
--- a/tests/test_askrene.py
+++ b/tests/test_askrene.py
@@ -1480,7 +1480,6 @@ def test_real_data(node_factory, bitcoind):
fees = {}
for n in range(0, limit):
- print(f"XXX: {n}")
# 0.5% is the norm
MAX_FEE = AMOUNT // 200
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.