doc: Remove outdated comments

They are outdated since #14336.
This commit is contained in:
Hennadii Stepanov 2021-09-25 14:16:55 +03:00
parent 16ccb3a1cd
commit ee7891a0c4
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -871,8 +871,6 @@ bool AppInitParameterInteraction(const ArgsManager& args)
nUserMaxConnections = args.GetArg("-maxconnections", DEFAULT_MAX_PEER_CONNECTIONS);
nMaxConnections = std::max(nUserMaxConnections, 0);
// Trim requested connection counts, to fit into system limitations
// <int> in std::min<int>(...) to work around FreeBSD compilation issue described in #2695
nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS + MAX_ADDNODE_CONNECTIONS + nBind + NUM_FDS_MESSAGE_CAPTURE);
#ifdef USE_POLL