What changed, and why it matters
This commit changes a single displayed wallet name from 'Blue Wallet' to 'BlueWallet' in the status bar UI. It is a cosmetic string correction with no security relevance visible in the code.
No security action needed; treat as a normal UI fix.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies one string literal in src/ui/gui_components/gui_status_bar.c within a WalletInfo_t array used for UI labels. The change renames the displayed text for WALLET_LIST_BLUE from ‘Blue Wallet’ to ‘BlueWallet’. No logic, memory handling, parsing, authentication, cryptography, or trust boundaries are affected.
Changed components
src/ui/gui_components/gui_status_bar.cInspect captured patch +1 / −1
diff --git a/src/ui/gui_components/gui_status_bar.c b/src/ui/gui_components/gui_status_bar.c
index 1e429f3..db64e51 100644
--- a/src/ui/gui_components/gui_status_bar.c
+++ b/src/ui/gui_components/gui_status_bar.c
@@ -179,7 +179,7 @@ const static WalletInfo_t g_walletBtn[] = {
#endif
#ifdef CYPHERPUNK_VERSION
- {WALLET_LIST_BLUE, "Blue Wallet", &walletBluewallet},
+ {WALLET_LIST_BLUE, "BlueWallet", &walletBluewallet},
{WALLET_LIST_SPARROW, "Sparrow", &walletSparrow},
{WALLET_LIST_UNISAT, "UniSat", &walletUniSat},
{WALLET_LIST_ZEUS, "Zeus Wallet", &walletZeus},
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.