init: set nMaxOutboundLimit connection option directly

DEFAULT_MAX_UPLOAD_TARGET is a compile time constant.
This commit is contained in:
fanquake
2020-10-24 16:38:56 +08:00
parent 173d0d35f1
commit f805933e70
2 changed files with 2 additions and 7 deletions

View File

@@ -75,7 +75,7 @@ static const bool DEFAULT_UPNP = false;
/** The maximum number of peer connections to maintain. */
static const unsigned int DEFAULT_MAX_PEER_CONNECTIONS = 125;
/** The default for -maxuploadtarget. 0 = Unlimited */
static const uint64_t DEFAULT_MAX_UPLOAD_TARGET = 0;
static constexpr uint64_t DEFAULT_MAX_UPLOAD_TARGET = 0;
/** Default for blocks only*/
static const bool DEFAULT_BLOCKSONLY = false;
/** -peertimeout default */