mirror of
https://github.com/GOSTSec/poolserver
synced 2025-01-15 01:00:10 +00:00
Fix authentication for dumb miners
This commit is contained in:
parent
4d1ba03569
commit
035f04ebba
@ -270,7 +270,7 @@ namespace Stratum
|
|||||||
result.Add(int64(4));
|
result.Add(int64(4));
|
||||||
|
|
||||||
JSON response;
|
JSON response;
|
||||||
response["id"] = msg["id"].GetInt();
|
response["id"] = msg["id"];
|
||||||
response["result"] = result;
|
response["result"] = result;
|
||||||
response["error"];
|
response["error"];
|
||||||
|
|
||||||
@ -296,13 +296,13 @@ namespace Stratum
|
|||||||
SetDifficulty(_minDiff);
|
SetDifficulty(_minDiff);
|
||||||
|
|
||||||
JSON response;
|
JSON response;
|
||||||
response["id"] = msg["id"].GetInt();
|
response["id"] = msg["id"];
|
||||||
response["error"];
|
response["error"];
|
||||||
response["result"] = true;
|
response["result"] = true;
|
||||||
SendMessage(response);
|
SendMessage(response);
|
||||||
} else {
|
} else {
|
||||||
JSON response;
|
JSON response;
|
||||||
response["id"] = msg["id"].GetInt();
|
response["id"] = msg["id"];
|
||||||
response["error"].Add(int64(20));
|
response["error"].Add(int64(20));
|
||||||
response["error"].Add("Authentication failed");
|
response["error"].Add("Authentication failed");
|
||||||
response["error"].Add(JSON());
|
response["error"].Add(JSON());
|
||||||
|
Loading…
x
Reference in New Issue
Block a user