mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-24 23:38:09 +00:00
legacy/stellar: fix timebounds display (#582)
This commit is contained in:
parent
69142e56e7
commit
d48c5c6450
@ -1699,13 +1699,13 @@ void stellar_layoutTransactionSummary(const StellarSignTx *msg) {
|
|||||||
memzero(str_timebound, sizeof(str_timebound));
|
memzero(str_timebound, sizeof(str_timebound));
|
||||||
|
|
||||||
timebound = (time_t)msg->timebounds_end;
|
timebound = (time_t)msg->timebounds_end;
|
||||||
strlcpy(str_lines[0], _("Valid from:"), sizeof(str_lines[0]));
|
strlcpy(str_lines[2], _("Valid to:"), sizeof(str_lines[2]));
|
||||||
if (timebound) {
|
if (timebound) {
|
||||||
tm = gmtime(&timebound);
|
tm = gmtime(&timebound);
|
||||||
strftime(str_timebound, sizeof(str_timebound), "%F %T (UTC)", tm);
|
strftime(str_timebound, sizeof(str_timebound), "%F %T (UTC)", tm);
|
||||||
strlcpy(str_lines[1], str_timebound, sizeof(str_lines[1]));
|
strlcpy(str_lines[3], str_timebound, sizeof(str_lines[3]));
|
||||||
} else {
|
} else {
|
||||||
strlcpy(str_lines[1], _("[no restriction]"), sizeof(str_lines[1]));
|
strlcpy(str_lines[3], _("[no restriction]"), sizeof(str_lines[3]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user