Invert currency pair notation to confirm with standard

This commit is contained in:
Manfred Karrer 2016-08-19 20:17:25 +02:00
parent 239a26299f
commit 5db6b34d8e

View file

@ -527,7 +527,7 @@ public class BSFormatter {
}
public String getCurrencyPair(String currencyCode) {
if (CurrencyUtil.isCryptoCurrency(currencyCode))
if (CurrencyUtil.isFiatCurrency(currencyCode))
return "BTC/" + currencyCode;
else
return currencyCode + "/BTC";