mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 15:10:44 +01:00
Add BSQ as default active assets
This commit is contained in:
parent
15f04362d3
commit
0ef2ccd4e4
1 changed files with 1 additions and 1 deletions
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue