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
{{ message }}
This repository has been archived by the owner on Jul 12, 2021. It is now read-only.
Suggest adding logic like this near the top of run_electrum_server:
# prevent database corruption due to default open file limits
import resource
softlimit, hardlimit = resource.getrlimit(resource.RLIMIT_OFILE)
if hardlimit < 64000:
print "Your open files limit is too low."
sys.exit()
The text was updated successfully, but these errors were encountered:
shsmith
added a commit
to shsmith/electrum-server
that referenced
this issue
Jul 18, 2015
Suggest adding logic like this near the top of run_electrum_server:
The text was updated successfully, but these errors were encountered: