mirror of
https://github.com/boldsuck/haveno.git
synced 2025-02-02 04:06:27 +00:00
increase max failed connection attempts to 8
This commit is contained in:
parent
1a0fab8c47
commit
902accb290
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ import java.util.Date;
|
||||||
@Getter
|
@Getter
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public final class Peer implements HasCapabilities, NetworkPayload, PersistablePayload, SupportedCapabilitiesListener {
|
public final class Peer implements HasCapabilities, NetworkPayload, PersistablePayload, SupportedCapabilitiesListener {
|
||||||
private static final int MAX_FAILED_CONNECTION_ATTEMPTS = 6;
|
private static final int MAX_FAILED_CONNECTION_ATTEMPTS = 8;
|
||||||
|
|
||||||
private final NodeAddress nodeAddress;
|
private final NodeAddress nodeAddress;
|
||||||
private final long date;
|
private final long date;
|
||||||
|
|
Loading…
Reference in a new issue