decrease sync timeout to 3 minutes (#1985)

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

View file

@ -34,7 +34,7 @@ import monero.wallet.model.MoneroWalletListener;
public abstract class XmrWalletBase {
// constants
private static final int SYNC_TIMEOUT_SECONDS = 240;
private static final int SYNC_TIMEOUT_SECONDS = 180;
private static final String SYNC_TIMEOUT_MSG = "Sync timeout called";
private static final long SAVE_AFTER_ELAPSED_SECONDS = 300;
private Object saveIntervalLock = new Object();