Increase timeout for trade process forn 30 sec to 60 sec.

This commit is contained in:
Manfred Karrer 2016-03-16 19:55:29 +01:00
parent bb625ad036
commit 9d51e3b0ba

View File

@ -38,7 +38,7 @@ import static io.bitsquare.util.Validator.nonEmptyStringOf;
public abstract class TradeProtocol {
private static final Logger log = LoggerFactory.getLogger(TradeProtocol.class);
private static final long TIMEOUT_SEC = 30;
private static final long TIMEOUT_SEC = 60;
protected final ProcessModel processModel;
private final DecryptedDirectMessageListener decryptedDirectMessageListener;