You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: core/src/main/java/haveno/core/trade/Trade.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -156,9 +156,9 @@ public abstract class Trade extends XmrWalletBase implements Tradable, Model {
156
156
publicstaticfinalintNUM_BLOCKS_DEPOSITS_FINALIZED = 30; // ~1 hour before deposits are considered finalized
157
157
publicstaticfinalintNUM_BLOCKS_PAYOUT_FINALIZED = Config.baseCurrencyNetwork().isTestnet() ? 60 : 720; // ~1 day before payout is considered finalized and multisig wallet deleted
privatestaticfinallongIDLE_SYNC_PERIOD_MS = Config.baseCurrencyNetwork().isTestnet() ? 30000 : 1680000; // 28 minutes (monero's default connection timeout is 30 minutes on a local connection, so beyond this the wallets will disconnect)
159
+
privatestaticfinallongIDLE_SYNC_PERIOD_MS = Config.baseCurrencyNetwork().isTestnet() ? 60000 : 1680000; // 28 minutes (monero's default connection timeout is 30 minutes on a local connection, so beyond this the wallets will disconnect)
160
160
privatestaticfinallongMAX_REPROCESS_DELAY_SECONDS = 7200; // max delay to reprocess messages (once per 2 hours)
161
-
privatestaticfinallongCHECK_POOL_PERIOD_MS = 180000; // throttle fetching from tx pool since invalidation is unlikely
161
+
privatestaticfinallongCHECK_POOL_PERIOD_MS = Config.baseCurrencyNetwork().isTestnet() ? 45000 : 180000; // throttle fetching from tx pool since invalidation is unlikely
0 commit comments