mirror of
https://github.com/SChernykh/p2pool.git
synced 2025-01-03 17:29:24 +00:00
Sync test: submit more fake shares
This commit is contained in:
parent
8776f7dfbb
commit
86e9af6fd7
1 changed files with 13 additions and 2 deletions
|
@ -56,7 +56,7 @@ while True:
|
||||||
if ('method' in obj) and ('params' in obj) and (obj['method'] == 'job'):
|
if ('method' in obj) and ('params' in obj) and (obj['method'] == 'job'):
|
||||||
job_id = obj['params']['job_id']
|
job_id = obj['params']['job_id']
|
||||||
target = obj['params']['target']
|
target = obj['params']['target']
|
||||||
elif ('result' in obj):
|
elif ('result' in obj) and ('job' in obj['result']):
|
||||||
if ('id' in obj['result']):
|
if ('id' in obj['result']):
|
||||||
rpc_id = obj['result']['id']
|
rpc_id = obj['result']['id']
|
||||||
job_id = obj['result']['job']['job_id']
|
job_id = obj['result']['job']['job_id']
|
||||||
|
@ -66,8 +66,19 @@ while True:
|
||||||
if (msg_id < 4):
|
if (msg_id < 4):
|
||||||
result = ('f' if (msg_id == 2) else '0') * 64
|
result = ('f' if (msg_id == 2) else '0') * 64
|
||||||
request = '{"id":' + str(msg_id) + ',"method":"submit","params":{"id":"' + rpc_id + '","job_id":"' + job_id + '","nonce":"ffffffff","result":"' + result + '"}}\n'
|
request = '{"id":' + str(msg_id) + ',"method":"submit","params":{"id":"' + rpc_id + '","job_id":"' + job_id + '","nonce":"ffffffff","result":"' + result + '"}}\n'
|
||||||
else:
|
elif (msg_id == 4):
|
||||||
request = '{"id":' + str(msg_id) + ',"method":"keepalived"}\n'
|
request = '{"id":' + str(msg_id) + ',"method":"keepalived"}\n'
|
||||||
|
else:
|
||||||
|
t = bytearray.fromhex(target)
|
||||||
|
for i in range(len(t)):
|
||||||
|
if (t[i] > 0):
|
||||||
|
t[i] -= 1
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
t[i] = 255
|
||||||
|
|
||||||
|
result = ('0' * (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
|
msg_id += 1
|
||||||
s = '-> ' + request
|
s = '-> ' + request
|
||||||
|
|
Loading…
Reference in a new issue