Set default limit for other nodes to size_t max

This commit is contained in:
Clement 2019-02-28 15:30:57 -08:00
parent 9ea41f7122
commit a804d3532e

View file

@ -51,7 +51,7 @@ const int INVALID_PORT = -1;
const quint64 NODE_SILENCE_THRESHOLD_MSECS = 5 * 1000;
static const size_t DEFAULT_MAX_CONNECTION_RATE { 50 };
static const size_t DEFAULT_MAX_CONNECTION_RATE { std::numeric_limits<size_t>::max() };
extern const std::set<NodeType_t> SOLO_NODE_TYPES;