Updated on 2026-08-14
This commit is contained in:
parent
e1999ed34f
commit
2ba21aab5c
5 changed files with 25 additions and 9 deletions
|
|
@ -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 "";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue