remove chat warning when missing dispute trade (#1997)

This commit is contained in:
woodser 2025-09-30 06:31:53 -04:00 committed by GitHub
parent 6ccb95e2eb
commit 1abbe83005
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1184,7 +1184,7 @@ public abstract class DisputeManager<T extends DisputeList<Dispute>> extends Sup
if (dispute.isClosed()) return false;
Optional<Trade> tradeOptional = findTrade(dispute);
if (!tradeOptional.isPresent()) {
log.warn("Dispute trade {} does not exist", dispute.getTradeId());
//log.warn("Dispute trade {} does not exist", dispute.getTradeId());
return false;
}
Trade trade = tradeOptional.get();