We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I get the following exception when running it against a remote miner (cgminer 3.7.2)
27 received = self._receive(sock) 28 finally: ---> 29 sock.shutdown(socket.SHUT_RDWR) 30 sock.close() 31 error: [Errno 57] Socket is not connected
It can easily be solved by catching the above exception as follow:
finally: try: sock.shutdown(socket.SHUT_RDWR) except socket.error: pass sock.close()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I get the following exception when running it against a remote miner (cgminer 3.7.2)
It can easily be solved by catching the above exception as follow:
The text was updated successfully, but these errors were encountered: