Update EthStratumClient.cpp
This commit is contained in:
@ -250,8 +250,10 @@ void EthStratumClient::parseNotification(const char* method, const rapidjson::Va
|
||||
bool ok = true;
|
||||
m_listener->onVerifyAlgorithm(this, algo, &ok);
|
||||
|
||||
if (!ok && !isQuiet()) {
|
||||
LOG_ERR("[%s] incompatible/disabled algorithm \"%s\" detected, reconnect", url(), algo.shortName());
|
||||
if (!ok) {
|
||||
if (!isQuiet()) {
|
||||
LOG_ERR("[%s] incompatible/disabled algorithm \"%s\" detected, reconnect", url(), algo.shortName());
|
||||
}
|
||||
disconnect();
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user