You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When setting the fd limit to 1 >> 31, the node fails to start:
ulimit -n 214748364
build/bin/bitcoind
Error: Not enough file descriptors available. -2147483648 available, 160 required.
Similar to the previous commit, this is fixed by capping the limit
to std::numeric_limits<int>::max().
0 commit comments