From ee7891a0c412728cf8bec667f25263682a9baaaf Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sat, 25 Sep 2021 14:16:55 +0300 Subject: [PATCH] doc: Remove outdated comments They are outdated since #14336. --- src/init.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index ff36ec805c8..10784c69e5e 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -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 - // in std::min(...) 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