What changed, and why it matters
This commit is a tiny UI-only change for the NuFi wallet connection screen. It increases the declared size of an image array from 4 to 5 so that a fifth cryptocurrency icon (likely TRON/TRX) can be added. There is no security-relevant change visible in the diff.
No security action needed. Treat as routine feature/UI maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch changes one line in gui_connect_wallet_widgets.c: the length of g_nufiCoinArray is bumped from 4 to 5. The array contents are not shown in the diff, but the title/message (‘nufi wallet add trx’) indicate a TRX icon is being added to the NuFi wallet’s supported-coin list. This is a benign UI asset bookkeeping change.
Changed components
src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.cInspect captured patch +1 / −1
diff --git a/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c b/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c
index 35695e4..182cdf9 100644
--- a/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c
+++ b/src/ui/gui_widgets/multi/web3/gui_connect_wallet_widgets.c
@@ -171,7 +171,7 @@ static const lv_img_dsc_t *g_solfareCoinArray[1] = {
&coinSol,
};
-static const lv_img_dsc_t *g_nufiCoinArray[4] = {
+static const lv_img_dsc_t *g_nufiCoinArray[5] = {
&coinSol,
&coinEth,
&coinBtc,
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.