This commit is contained in:
Jerry Brady 2014-04-19 00:43:16 +00:00
commit 26d98a1fd1
1 changed files with 2 additions and 3 deletions

View File

@ -42,7 +42,6 @@ module.exports = function(logger, poolConfig){
this.handleShare = function(isValidShare, isValidBlock, shareData){ this.handleShare = function(isValidShare, isValidBlock, shareData){
var redisCommands = []; var redisCommands = [];
if (isValidShare){ if (isValidShare){
@ -71,8 +70,8 @@ module.exports = function(logger, poolConfig){
connection.multi(redisCommands).exec(function(err, replies){ connection.multi(redisCommands).exec(function(err, replies){
if (err) if (err)
logger.error(logSystem, logComponent, logSubCat, 'Error with share processor multi ' + JSON.stringify(err)); logger.error(logSystem, logComponent, logSubCat, 'Error with share processor multi ' + JSON.stringify(err));
else //else
logger.debug(logSystem, logComponent, logSubCat, 'Share data and stats recorded'); //logger.debug(logSystem, logComponent, logSubCat, 'Share data and stats recorded');
}); });