mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-11 07:17:58 +00:00
Only check for the stratum clean message if we have had a valid message.
This commit is contained in:
parent
d38802a68f
commit
75c5ac0457
@ -5157,8 +5157,7 @@ static void *stratum_rthread(void *userdata)
|
||||
|
||||
if (!parse_method(pool, s) && !parse_stratum_response(pool, s))
|
||||
applog(LOG_INFO, "Unknown stratum msg: %s", s);
|
||||
free(s);
|
||||
if (pool->swork.clean) {
|
||||
else if (pool->swork.clean) {
|
||||
struct work *work = make_work();
|
||||
|
||||
/* Generate a single work item to update the current
|
||||
@ -5171,6 +5170,7 @@ static void *stratum_rthread(void *userdata)
|
||||
test_work_current(work);
|
||||
free_work(work);
|
||||
}
|
||||
free(s);
|
||||
}
|
||||
|
||||
out:
|
||||
|
Loading…
Reference in New Issue
Block a user