Updated on 2026-08-14

This commit is contained in:
Tangem 2024-11-08 00:45:15 +05:00
commit deee78580e

View file

@ -193,7 +193,7 @@ object NotificationsFactory {
if (isExceedsLimit) {
add(
NotificationUM.Error.MinimumAmountError(
amount = dustValue.parseBigDecimal(cryptoCurrencyStatus.currency.decimals),
amount = dustValue.format { crypto(cryptoCurrencyStatus.currency) },
),
)
}
@ -301,7 +301,7 @@ object NotificationsFactory {
dustValue?.let {
add(
NotificationUM.Error.MinimumAmountError(
amount = it.parseBigDecimal(sendingCurrency.decimals),
amount = it.format { crypto(sendingCurrency) },
),
)
}