Aligning the streaming review to the normal one - using "To" for "Adddress"
What changed, and why it matters
This commit changes a single label shown on Ledger hardware wallet screens during Bitcoin transaction review. The label 'Address' is renamed to 'To' in the streaming transaction review flow so it matches the regular (non-streaming) review flow. There is no code behavior change, no security fix, and no vulnerability.
No security action needed. Treat as a routine UI consistency change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
In src/ui/display_nbgl.c, the third review pair’s item label is changed from ‘Address’ to ‘To’ within ui_display_transaction_streaming_output_address_amount(). This is a UI string alignment only; the underlying data source (state->address_or_description[0]) and all logic remain unchanged.
Changed components
src/ui/display_nbgl.cNBGL streaming transaction review UIInspect captured patch +1 / −1
diff --git a/src/ui/display_nbgl.c b/src/ui/display_nbgl.c
index fb70b29..52e802e 100644
--- a/src/ui/display_nbgl.c
+++ b/src/ui/display_nbgl.c
@@ -347,7 +347,7 @@ void ui_display_transaction_streaming_output_address_amount(void) {
pairs[1].item = "Amount";
pairs[1].value = state->amount[0];
- pairs[2].item = "Address";
+ pairs[2].item = "To";
pairs[2].value = state->address_or_description[0];
nbgl_useCaseReviewStreamingContinue(make_pair_list(3, false), start_transaction_callback);
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.