1
0
mirror of https://github.com/GOSTSec/poolserver synced 2025-01-14 08:47:53 +00:00

Fix authentication for dumb miners

This commit is contained in:
Intel 2014-05-05 15:42:22 -04:00
parent 4d1ba03569
commit 035f04ebba

View File

@ -270,7 +270,7 @@ namespace Stratum
result.Add(int64(4));
JSON response;
response["id"] = msg["id"].GetInt();
response["id"] = msg["id"];
response["result"] = result;
response["error"];
@ -296,13 +296,13 @@ namespace Stratum
SetDifficulty(_minDiff);
JSON response;
response["id"] = msg["id"].GetInt();
response["id"] = msg["id"];
response["error"];
response["result"] = true;
SendMessage(response);
} else {
JSON response;
response["id"] = msg["id"].GetInt();
response["id"] = msg["id"];
response["error"].Add(int64(20));
response["error"].Add("Authentication failed");
response["error"].Add(JSON());