decrease resend period for payment received message to 1 month (#1986)

This commit is contained in:
woodser 2025-09-27 00:46:34 -04:00 committed by GitHub
parent f8135ad134
commit a7c6e15f2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,7 @@ import java.util.Date;
@Slf4j
public abstract class SellerTrade extends Trade {
private static final long resendPaymentReceivedMessagesDurationMs = 2L * 30 * 24 * 60 * 60 * 1000; // ~2 months
private static final long resendPaymentReceivedMessagesDurationMs = 1L * 30 * 24 * 60 * 60 * 1000; // ~1 month
SellerTrade(Offer offer,
BigInteger tradeAmount,