mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-24 13:41:22 -05:00
increase max tx attempts to 5
This commit is contained in:
parent
8e24ebfc23
commit
5531d4eea1
@ -96,7 +96,7 @@ public abstract class TradeProtocol implements DecryptedDirectMessageListener, D
|
|||||||
|
|
||||||
public static final int TRADE_STEP_TIMEOUT_SECONDS = Config.baseCurrencyNetwork().isTestnet() ? 45 : 180;
|
public static final int TRADE_STEP_TIMEOUT_SECONDS = Config.baseCurrencyNetwork().isTestnet() ? 45 : 180;
|
||||||
private static final String TIMEOUT_REACHED = "Timeout reached.";
|
private static final String TIMEOUT_REACHED = "Timeout reached.";
|
||||||
public static final int MAX_ATTEMPTS = 3;
|
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;
|
||||||
|
|
||||||
protected final ProcessModel processModel;
|
protected final ProcessModel processModel;
|
||||||
|
Loading…
Reference in New Issue
Block a user