Updated on 2026-08-14

This commit is contained in:
Tangem 2018-09-11 10:22:24 +03:00
parent a8a8954993
commit 477ca0d1a6
2 changed files with 7 additions and 1 deletions

View file

@ -114,7 +114,7 @@ public final class BTCUtils {
String pattern = "#0.00000000";
DecimalFormat myFormatter = new DecimalFormat(pattern);
String output = myFormatter.format(dec);
String output = myFormatter.format(dec).replace(",",".");
return output;
}