Reduce timeout to 90 sec

- We had it initially at 60 sec. and increased it as attempt to fight
those timeout errors, but it did not help. So letting the user wait
longer as needed does not make sense.
This commit is contained in:
Manfred Karrer 2019-03-03 20:46:10 -05:00
parent f44e9b12cd
commit 0711ab936d
No known key found for this signature in database
GPG key ID: 401250966A6B2C46

View file

@ -49,7 +49,7 @@ import static bisq.core.util.Validator.nonEmptyStringOf;
@Slf4j
public abstract class TradeProtocol {
private static final long TIMEOUT = 120;
private static final long TIMEOUT = 90;
protected final ProcessModel processModel;
private final DecryptedDirectMessageListener decryptedDirectMessageListener;