1
0
mirror of https://github.com/GOSTSec/poolserver synced 2025-02-06 03:54:28 +00:00

Merge branch 'master' into peercoin

This commit is contained in:
Intel 2014-05-05 15:42:30 -04:00
commit 1791b4c3de

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());