mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Add comment
This commit is contained in:
parent
f59bbefe21
commit
36df44db33
@ -487,6 +487,7 @@ public class CurrencyUtil {
|
||||
.findAny();
|
||||
}
|
||||
|
||||
// Excludes all assets which got removed by DAO voting
|
||||
public static List<CryptoCurrency> getWhiteListedSortedCryptoCurrencies(AssetService assetService) {
|
||||
return getAllSortedCryptoCurrencies().stream()
|
||||
.filter(e -> !assetService.isAssetRemoved(e.getCode()))
|
||||
|
@ -88,6 +88,7 @@ public class AssetTradeActivityCheck {
|
||||
tradeAmount = tuple.first;
|
||||
numTrades = tuple.second;
|
||||
}
|
||||
|
||||
if (isWarmingUp(code)) {
|
||||
assetsToRemove.remove(e);
|
||||
newAssets.append("\n")
|
||||
@ -97,6 +98,7 @@ public class AssetTradeActivityCheck {
|
||||
.append(", number of trades: ")
|
||||
.append(numTrades);
|
||||
}
|
||||
|
||||
if (!isWarmingUp(code) && !hasPaidBSQFee(code)) {
|
||||
if (isInTradeStatMap) {
|
||||
if (tradeAmount >= minTradeAmount || numTrades >= minNumOfTrades) {
|
||||
|
Loading…
Reference in New Issue
Block a user