Browse Source

Discard work when failover-only is enabled and the work has come from a different pool.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
ffbf15ad82
  1. 9
      cgminer.c

9
cgminer.c

@ -1706,7 +1706,6 @@ static bool workio_get_work(struct workio_cmd *wc) @@ -1706,7 +1706,6 @@ static bool workio_get_work(struct workio_cmd *wc)
static bool stale_work(struct work *work, bool share)
{
struct timeval now;
bool ret = false;
gettimeofday(&now, NULL);
if (share) {
@ -1716,8 +1715,12 @@ static bool stale_work(struct work *work, bool share) @@ -1716,8 +1715,12 @@ static bool stale_work(struct work *work, bool share)
return true;
if (work->work_block != work_block)
ret = true;
return ret;
return true;
if (opt_fail_only && work->pool != current_pool())
return true;
return false;
}
static void *submit_work_thread(void *userdata)

Loading…
Cancel
Save