decrease resend period for payment received message to 1 month

This commit is contained in:
woodser 2025-09-26 10:31:18 -04:00
parent 457518e3a9
commit 08b0cc8480
No known key found for this signature in database
GPG key ID: 55A10DD48ADEE5EF

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,