|
|
|
@ -2935,7 +2935,7 @@ static void calc_diff(struct work *work, double known)
@@ -2935,7 +2935,7 @@ static void calc_diff(struct work *work, double known)
|
|
|
|
|
{ |
|
|
|
|
struct sgminer_pool_stats *pool_stats = &(work->pool->sgminer_pool_stats); |
|
|
|
|
double difficulty; |
|
|
|
|
int intdiff; |
|
|
|
|
uint64_t uintdiff; |
|
|
|
|
|
|
|
|
|
if (known) |
|
|
|
|
work->work_difficulty = known; |
|
|
|
@ -2952,8 +2952,8 @@ static void calc_diff(struct work *work, double known)
@@ -2952,8 +2952,8 @@ static void calc_diff(struct work *work, double known)
|
|
|
|
|
difficulty = work->work_difficulty; |
|
|
|
|
|
|
|
|
|
pool_stats->last_diff = difficulty; |
|
|
|
|
intdiff = round(difficulty); |
|
|
|
|
suffix_string(intdiff, work->pool->diff, sizeof(work->pool->diff), 0); |
|
|
|
|
uintdiff = round(difficulty); |
|
|
|
|
suffix_string(uintdiff, work->pool->diff, sizeof(work->pool->diff), 0); |
|
|
|
|
|
|
|
|
|
if (difficulty == pool_stats->min_diff) |
|
|
|
|
pool_stats->min_diff_count++; |
|
|
|
|