fixed wrong currency in FixPriceRateSource.

This commit is contained in:
MJ2P 2014-12-11 15:12:08 +00:00
parent 47d2fac2c8
commit 8413beb50e
1 changed files with 1 additions and 1 deletions

View File

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