mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-01-03 09:29:44 +00:00
increase max tx attempts to 5
This commit is contained in:
parent
8e24ebfc23
commit
5531d4eea1
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ public abstract class TradeProtocol implements DecryptedDirectMessageListener, D
|
|||
|
||||
public static final int TRADE_STEP_TIMEOUT_SECONDS = Config.baseCurrencyNetwork().isTestnet() ? 45 : 180;
|
||||
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;
|
||||
|
||||
protected final ProcessModel processModel;
|
||||
|
|
Loading…
Reference in a new issue