mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
trade step timeout is 60s on testnet
This commit is contained in:
parent
2341e73da2
commit
eefcf0191f
@ -94,7 +94,7 @@ import java.util.concurrent.CountDownLatch;
|
|||||||
@Slf4j
|
@Slf4j
|
||||||
public abstract class TradeProtocol implements DecryptedDirectMessageListener, DecryptedMailboxListener {
|
public abstract class TradeProtocol implements DecryptedDirectMessageListener, DecryptedMailboxListener {
|
||||||
|
|
||||||
public static final int TRADE_STEP_TIMEOUT_SECONDS = Config.baseCurrencyNetwork().isTestnet() ? 45 : 180;
|
public static final int TRADE_STEP_TIMEOUT_SECONDS = Config.baseCurrencyNetwork().isTestnet() ? 60 : 180;
|
||||||
private static final String TIMEOUT_REACHED = "Timeout reached.";
|
private static final String TIMEOUT_REACHED = "Timeout reached.";
|
||||||
public static final int MAX_ATTEMPTS = 5; // max attempts to create txs and other wallet functions
|
public static final int MAX_ATTEMPTS = 5; // max attempts to create txs and other wallet functions
|
||||||
public static final long REPROCESS_DELAY_MS = 5000;
|
public static final long REPROCESS_DELAY_MS = 5000;
|
||||||
|
Loading…
Reference in New Issue
Block a user