Adding keepalived support to the pool source.

master
Alexander Blair 7 years ago
parent 103a029e6e
commit e332e18264

@ -694,6 +694,13 @@ function handleMinerData(method, params, ip, portData, sendReply, pushMessage) {
sendReply(null, {status: 'OK'});
break;
case 'keepalived':
if (!miner) {
sendReply('Unauthenticated');
return;
}
sendReply('KEEPALIVED');
break;
}
}

Loading…
Cancel
Save