Merge pull request #2 from ygboucherk/patch-1

Improved stability
This commit is contained in:
Pherelo_HD 2021-03-17 21:47:14 +00:00 committed by GitHub
commit 154f38f2c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 21 deletions

View File

@ -5,7 +5,7 @@ username = "user" # Edit this to your username, mind the quotes
pool_address = "51.15.127.80"
pool_port = 2811
print("Starting 3DS Miner, you probably won't get any output")
print("Starting 3DS Miner, you probably will get Output on an error.")
while True:
soc.connect((str(pool_address), int(pool_port))) # Connect to the server
@ -13,6 +13,7 @@ while True:
print("Server is on version", server_version)
# Mining section
while True:
try:
soc.send(bytes("JOB," + str(username) + ",ESP32", encoding="utf8")) # Send job request
# Don't mind the "ESP32" for now since it is in an early state
@ -32,4 +33,13 @@ while True:
) # Send result of hashing algorithm to pool
feedback = soc.recv(1024).decode() # Get feedback about the result
print(feedback)
except:
while True:
try:
soc.close()
soc = socket.socket()
soc.connect((str(pool_address), int(pool_port))) # Connect to the server
except:
pass
else:
break