Updated on 2026-08-14

This commit is contained in:
Tangem 2018-07-10 18:46:35 +03:00
parent 134f518bfb
commit 4ddab6fee3
17 changed files with 151 additions and 90 deletions

View file

@ -104,7 +104,7 @@ public class EthEngine extends CoinEngine {
BigDecimal d = convertToEth(dec);
String s = d.toString();
String pattern = "#0.000"; // If you like 4 zeros
String pattern = "#0.000###############"; // If you like 4 zeros
DecimalFormat myFormatter = new DecimalFormat(pattern);
String output = myFormatter.format(d);
return output;