What changed, and why it matters
This is a tiny cleanup commit. It fixes a wording error in the changelog ('after 13 PIN failures, when device is bricked' becomes 'after 13 PIN failures or when device is bricked') and removes an unused local import inside a calculator feature. There is no security-relevant code change.
No security action needed. Treat as routine cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff touches two files. In releases/Next-ChangeLog.md it corrects a changelog sentence to clarify that a ‘forever calculator’ mode is entered after 13 PIN failures OR when the device is bricked. In shared/calc.py it removes a redundant ‘from pincodes import pa’ line because ‘pa’ is already imported at module scope. No logic, bounds checking, cryptography, or access control is altered.
Changed components
shared/calc.pyreleases/Next-ChangeLog.mdInspect captured patch +1 / −2
diff --git a/releases/Next-ChangeLog.md b/releases/Next-ChangeLog.md
index f7077e5..92442dd 100644
--- a/releases/Next-ChangeLog.md
+++ b/releases/Next-ChangeLog.md
@@ -45,7 +45,7 @@ Spending policies for "Single Signers" adds new spending policy options:
## 1.3.4Q - 2025-09-2x
- Enhancement: Enter "forever calculator" mode when Q would otherwise be e-waste: after 13
- PIN failures, when device is bricked.
+ PIN failures or when device is bricked.
- Bugfix: Correct line positioning when 24 seed words displayed.
diff --git a/shared/calc.py b/shared/calc.py
index 8e31e4a..3649634 100644
--- a/shared/calc.py
+++ b/shared/calc.py
@@ -85,7 +85,6 @@ Example Commands:
elif re_prefix.match(ln) and (len(ln) <= 7):
# show words
- from pincodes import pa
ans = pa.prefix_words(ln[:-1].encode())
else:
if any((b in ln) for b in blacklist):
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.