Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small improvements/fixes #1728

Merged
merged 13 commits into from Sep 27, 2018
2 changes: 1 addition & 1 deletion core/src/main/java/bisq/core/util/BSFormatter.java
Expand Up @@ -328,7 +328,7 @@ public String formatAltcoinVolume(Altcoin altcoin, boolean appendCurrencyCode) {
// TODO quick hack...
String res;
if (altcoin.getCurrencyCode().equals("BSQ"))
res = altcoinFormat.noCode().minDecimals(3).repeatOptionalDecimals(0, 0).format(altcoin).toString();
res = altcoinFormat.noCode().minDecimals(2).repeatOptionalDecimals(0, 0).format(altcoin).toString();
else
res = altcoinFormat.noCode().format(altcoin).toString();
if (appendCurrencyCode)
Expand Down