Add BSQ as default active assets

This commit is contained in:
Manfred Karrer 2018-11-28 21:43:21 +01:00
parent 15f04362d3
commit 0ef2ccd4e4
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -494,7 +494,7 @@ public class CurrencyUtil {
// Excludes all assets which got removed by DAO voting
public static List<CryptoCurrency> getActiveSortedCryptoCurrencies(AssetService assetService) {
return getAllSortedCryptoCurrencies().stream()
.filter(e -> assetService.isActive(e.getCode()))
.filter(e -> e.getCode().equals("BSQ") || assetService.isActive(e.getCode()))
.collect(Collectors.toList());
}
}