Fixed DOGE fix ratesource

This commit is contained in:
b00lean 2015-11-06 14:45:05 +01:00
parent 16ea0c20cb
commit f3b47316aa
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ public class FixPriceRateSource implements IRateSource {
@Override @Override
public BigDecimal getExchangeRateLast(String cryptoCurrency, String fiatCurrency) { public BigDecimal getExchangeRateLast(String cryptoCurrency, String fiatCurrency) {
if (!ICurrencies.DOGE.equalsIgnoreCase(cryptoCurrency)) { if (ICurrencies.DOGE.equalsIgnoreCase(cryptoCurrency)) {
return rate; return rate;
} }
return null; return null;