@EvgeniyKorepov This json file is incorrect. You forgot the algorithm.add method, the first parameter in worker.add has to be the name of the algorithm, also M=0 is not the fastest option for equihash. If you're using M=0 parameter you should definitely use two workers per device to get better results. FYI, we added worker.print.speeds method, you might find it useful
@dimytr Here is the correct example (without overclocking):
[
{"time":0,"commands":[
{"id":1,"method":"subscribe","params":["nhmp.eu.nicehash.com:3200","btc_address.worker_name"]}
]},
{"time":2,"commands":[
{"id":1,"method":"algorithm.add","params":["equihash"]}
]},
{"time":3,"commands":[
{"id":1,"method":"worker.add","params":["equihash","0"]},
{"id":1,"method":"worker.add","params":["equihash","1"]},
{"id":1,"method":"worker.add","params":["equihash","2"]},
{"id":1,"method":"worker.add","params":["equihash","3"]},
{"id":1,"method":"worker.add","params":["equihash","4"]},
{"id":1,"method":"worker.add","params":["equihash","5"]}
]},
{"time":10,"loop":10,"commands":[
{"id":1,"method":"algorithm.print.speeds","params":[]}
]}
]
Fixed, thanks! I'm just confused in the versions of API and copy-paste from my configs. :-)