MAX_AVG_RESPONSE_TIME for ElectrumX servers increased from 0.5s to 1s.

This commit is contained in:
CalDescent 2022-12-22 14:25:10 +00:00
parent 758a02d71a
commit bb74b2d4f6

View File

@ -40,7 +40,7 @@ public class ElectrumX extends BitcoinyBlockchainProvider {
private static final String VERBOSE_TRANSACTIONS_UNSUPPORTED_MESSAGE = "verbose transactions are currently unsupported";
private static final int RESPONSE_TIME_READINGS = 5;
private static final long MAX_AVG_RESPONSE_TIME = 500L; // ms
private static final long MAX_AVG_RESPONSE_TIME = 1000L; // ms
public static class Server {
String hostname;