Updated on 2026-08-14

This commit is contained in:
Tangem 2020-05-13 21:59:18 +03:00
parent 72f0c98af7
commit 1c928160a6

View file

@ -95,7 +95,7 @@ public class BinanceAssetEngine extends CoinEngine {
if (assetBalance != null) {
return assetBalance.toDescriptionString(getDecimals()) + "<br><small><small>+ " + balance.toDescriptionString(getDecimals()) + " for fee</small></small>";
}
return balance.toDescriptionString(getDecimals());
return new Amount(BigDecimal.ZERO, ctx.getCard().tokenSymbol).toDescriptionString(getDecimals()) + "<br><small><small>+ " + balance.toDescriptionString(getDecimals()) + " for fee</small></small>";
} else {
return "";
}