Update stratum_dummy.py

pull/271/head
SChernykh 2023-08-15 08:00:11 +02:00
parent a6b6cb0f09
commit c74b567fe4
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ while True:
else:
t[i] = 255
result = ('0' * (64 - len(target))) + t.hex()
result = ('f' * (64 - len(target))) + t.hex()
request = '{"id":' + str(msg_id) + ',"method":"submit","params":{"id":"' + rpc_id + '","job_id":"' + job_id + '","nonce":"ffffffff","result":"' + result + '"}}\n'
msg_id += 1