mirror of
https://github.com/GOSTSec/sgminer
synced 2025-09-01 16:52:18 +00:00
Count longpoll and GBT decodes as queued work since the count otherwise remains static.
This commit is contained in:
parent
1746e4714e
commit
bc4f6d928a
@ -5690,6 +5690,8 @@ static void convert_to_work(json_t *val, int rolltime, struct pool *pool, struct
|
|||||||
free_work(work);
|
free_work(work);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
total_getworks++;
|
||||||
|
pool->getwork_requested++;
|
||||||
work->pool = pool;
|
work->pool = pool;
|
||||||
work->rolltime = rolltime;
|
work->rolltime = rolltime;
|
||||||
memcpy(&(work->tv_getwork), tv_lp, sizeof(struct timeval));
|
memcpy(&(work->tv_getwork), tv_lp, sizeof(struct timeval));
|
||||||
@ -5939,6 +5941,10 @@ static bool pool_getswork(struct pool *pool)
|
|||||||
struct work *work = make_work();
|
struct work *work = make_work();
|
||||||
bool rc = work_decode(pool, work, val);
|
bool rc = work_decode(pool, work, val);
|
||||||
|
|
||||||
|
if (pool->has_gbt && pool == current_pool()) {
|
||||||
|
total_getworks++;
|
||||||
|
pool->getwork_requested++;
|
||||||
|
}
|
||||||
if (rc) {
|
if (rc) {
|
||||||
applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
|
applog(LOG_DEBUG, "Successfully retrieved and deciphered work from pool %u %s",
|
||||||
pool->pool_no, pool->rpc_url);
|
pool->pool_no, pool->rpc_url);
|
||||||
@ -5955,6 +5961,7 @@ static bool pool_getswork(struct pool *pool)
|
|||||||
pool->pool_no, pool->rpc_url);
|
pool->pool_no, pool->rpc_url);
|
||||||
}
|
}
|
||||||
curl_easy_cleanup(curl);
|
curl_easy_cleanup(curl);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user