mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 15:38:11 +00:00
vendor: Update trezor-crypto
This commit is contained in:
parent
38b6332db5
commit
11d424cdef
@ -228,7 +228,7 @@ static void ethereumFormatAmount(const bignum256 *amnt, const TokenType *token,
|
||||
default: suffix = " UNKN"; break; // unknown chain
|
||||
}
|
||||
}
|
||||
bn_format(amnt, NULL, suffix, decimals, buf, buflen);
|
||||
bn_format(amnt, NULL, suffix, decimals, 0, false, buf, buflen);
|
||||
}
|
||||
|
||||
static void layoutEthereumConfirmTx(const uint8_t *to, uint32_t to_len, const uint8_t *value, uint32_t value_len, const TokenType *token)
|
||||
|
@ -98,9 +98,7 @@ void layoutHome(void)
|
||||
void layoutConfirmOutput(const CoinType *coin, const TxOutputType *out)
|
||||
{
|
||||
char str_out[32];
|
||||
bignum256 amnt;
|
||||
bn_read_uint64(out->amount, &amnt);
|
||||
bn_format(&amnt, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, str_out, sizeof(str_out));
|
||||
bn_format_uint64(out->amount, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, 0, false, str_out, sizeof(str_out));
|
||||
static char first_half[17 + 1];
|
||||
strlcpy(first_half, out->address, sizeof(first_half));
|
||||
layoutDialogSwipe(&bmp_icon_question,
|
||||
@ -119,11 +117,8 @@ void layoutConfirmOutput(const CoinType *coin, const TxOutputType *out)
|
||||
void layoutConfirmTx(const CoinType *coin, uint64_t amount_out, uint64_t amount_fee)
|
||||
{
|
||||
char str_out[32], str_fee[32];
|
||||
bignum256 amnt;
|
||||
bn_read_uint64(amount_out, &amnt);
|
||||
bn_format(&amnt, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, str_out, sizeof(str_out));
|
||||
bn_read_uint64(amount_fee, &amnt);
|
||||
bn_format(&amnt, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, str_fee, sizeof(str_fee));
|
||||
bn_format_uint64(amount_out, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, 0, false, str_out, sizeof(str_out));
|
||||
bn_format_uint64(amount_fee, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, 0, false, str_fee, sizeof(str_fee));
|
||||
layoutDialogSwipe(&bmp_icon_question,
|
||||
_("Cancel"),
|
||||
_("Confirm"),
|
||||
@ -140,9 +135,7 @@ void layoutConfirmTx(const CoinType *coin, uint64_t amount_out, uint64_t amount_
|
||||
void layoutFeeOverThreshold(const CoinType *coin, uint64_t fee)
|
||||
{
|
||||
char str_fee[32];
|
||||
bignum256 amnt;
|
||||
bn_read_uint64(fee, &amnt);
|
||||
bn_format(&amnt, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, str_fee, sizeof(str_fee));
|
||||
bn_format_uint64(fee, NULL, coin->has_coin_shortcut ? coin->coin_shortcut : NULL, BITCOIN_DIVISIBILITY, 0, false, str_fee, sizeof(str_fee));
|
||||
layoutDialogSwipe(&bmp_icon_question,
|
||||
_("Cancel"),
|
||||
_("Confirm"),
|
||||
|
2
vendor/trezor-crypto
vendored
2
vendor/trezor-crypto
vendored
@ -1 +1 @@
|
||||
Subproject commit dfdb4d2d766506e9f54dd2c69c5e664fe4e39304
|
||||
Subproject commit 66993f9e9248d9d74a0c9997a95461bcd4a9dbe8
|
Loading…
Reference in New Issue
Block a user