Merge pull request #2734 from ripcurlx/include-bsq-in-markets-print-tool

Remove BSQ filter for crypto currencies
This commit is contained in:
Manfred Karrer 2019-04-17 09:21:44 -05:00 committed by GitHub
commit 5f86da9e73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,6 @@ public class MarketsPrintTool {
final List<CryptoCurrency> allSortedCryptoCurrencies = CurrencyUtil.getAllSortedCryptoCurrencies();
final Stream<MarketCurrency> cryptoStream = allSortedCryptoCurrencies.stream()
.filter(e -> !e.getCode().equals("BSQ"))
.filter(e -> !e.getCode().equals("BTC"))
.map(e -> new MarketCurrency(e.getCode().toLowerCase() + "_btc", e.getName(), e.getCode()))
.distinct();