We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16ccb3a commit ee7891aCopy full SHA for ee7891a
src/init.cpp
@@ -871,8 +871,6 @@ bool AppInitParameterInteraction(const ArgsManager& args)
871
nUserMaxConnections = args.GetArg("-maxconnections", DEFAULT_MAX_PEER_CONNECTIONS);
872
nMaxConnections = std::max(nUserMaxConnections, 0);
873
874
- // Trim requested connection counts, to fit into system limitations
875
- // <int> in std::min<int>(...) to work around FreeBSD compilation issue described in #2695
876
nFD = RaiseFileDescriptorLimit(nMaxConnections + MIN_CORE_FILEDESCRIPTORS + MAX_ADDNODE_CONNECTIONS + nBind + NUM_FDS_MESSAGE_CAPTURE);
877
878
#ifdef USE_POLL
0 commit comments