What changed, and why it matters
This commit is a routine build fix. It updates a cached image hash file and adds a missing function declaration inside a conditional compile block for a Web3-specific version. There is no visible security relevance.
No security action required; treat as normal build maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes two files: (1) src/ui/gui_assets/images_hash.txt updates an MD5-like hash from one value to another, likely reflecting regenerated UI assets; (2) src/ui/gui_widgets/gui_forget_pass_widgets.h adds a prototype GuiForgetPassTonSuccess() guarded by #ifdef WEB3_VERSION, presumably to resolve an undefined-symbol build error in the Web3 build variant. No logic, buffer handling, authentication, or cryptographic code is modified.
Changed components
src/ui/gui_assets/images_hash.txtsrc/ui/gui_widgets/gui_forget_pass_widgets.hInspect captured patch +5 / −1
diff --git a/src/ui/gui_assets/images_hash.txt b/src/ui/gui_assets/images_hash.txt
index 582bce4..4357b8b 100644
--- a/src/ui/gui_assets/images_hash.txt
+++ b/src/ui/gui_assets/images_hash.txt
@@ -1 +1 @@
-15d665eaa950cea4ff7f18817e8953c4
\ No newline at end of file
+8d56b2deee2db464633d3a06a9c3fbfd
\ No newline at end of file
diff --git a/src/ui/gui_widgets/gui_forget_pass_widgets.h b/src/ui/gui_widgets/gui_forget_pass_widgets.h
index d70da8d..7788dd2 100644
--- a/src/ui/gui_widgets/gui_forget_pass_widgets.h
+++ b/src/ui/gui_widgets/gui_forget_pass_widgets.h
@@ -16,5 +16,9 @@ void GuiForgetPassVerifyResult(bool en, int errCode);
void GuiForgetPassUpdateKeyboard(void);
bool GuiIsForgetPass(void);
+#ifdef WEB3_VERSION
+void GuiForgetPassTonSuccess(void);
+#endif
+
#endif /* _GUI_FORGET_PASS_WIDGETS_H */
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.