Disable authentication in order to support Claymore miner taxation

This commit is contained in:
joshuayabut 2016-11-20 01:31:21 -05:00
parent d561a4049b
commit 6a12b7fb71
1 changed files with 3 additions and 2 deletions

View File

@ -167,12 +167,13 @@ var StratumClient = function(options){
soln : message.params[4],
nonce : _this.extraNonce1 + message.params[3]
},
// lie to Claymore miner due to unauthorized devfee submissions
function(error, result){
if (!considerBan(result)){
sendJson({
id: message.id,
result: result,
error: error
result: true,
error: null
});
}
}