missing comma
This commit is contained in:
parent
7b6044d674
commit
2d6470cf3f
@ -68,7 +68,7 @@ module.exports = function(logger, poolConfig){
|
|||||||
shareData.worker,
|
shareData.worker,
|
||||||
isValidShare ? 'Y' : 'N',
|
isValidShare ? 'Y' : 'N',
|
||||||
isValidBlock ? 'Y' : 'N',
|
isValidBlock ? 'Y' : 'N',
|
||||||
shareData.difficulty * (poolConfig.coin.mposDiffMultiplier || 1)
|
shareData.difficulty * (poolConfig.coin.mposDiffMultiplier || 1),
|
||||||
typeof(shareData.error) === 'undefined' ? null : shareData.error,
|
typeof(shareData.error) === 'undefined' ? null : shareData.error,
|
||||||
shareData.blockHash ? shareData.blockHash : (shareData.blockHashInvalid ? shareData.blockHashInvalid : '')
|
shareData.blockHash ? shareData.blockHash : (shareData.blockHashInvalid ? shareData.blockHashInvalid : '')
|
||||||
];
|
];
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user