Updated on 2026-08-14

This commit is contained in:
Tangem 2018-10-19 13:34:18 +03:00
parent e1999ed34f
commit 2ba21aab5c
5 changed files with 25 additions and 9 deletions

View file

@ -112,7 +112,7 @@ public class EthEngine extends CoinEngine {
exchangeCurs = exchangeCurs.setScale(2, RoundingMode.DOWN);
return "USD " + exchangeCurs.toString();
} else {
return "USD ---";
return "";
}
}
@ -123,8 +123,9 @@ public class EthEngine extends CoinEngine {
if (rate > 0) {
return String.format("USD%.2f", amount * rate);
} else {
return "USD ---";
return "";
}
}