1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-27 23:14:21 +00:00

Put upper bounds to under 2 hours that work can be rolled into the future for bitcoind will deem it invalid beyond that.

This commit is contained in:
Con Kolivas 2012-06-27 23:32:50 +10:00
parent bcec5f5102
commit eddd02fea1

View File

@ -3644,9 +3644,12 @@ static inline bool should_roll(struct work *work)
return false;
}
/* Limit rolls to 7000 to not beyond 2 hours in the future where bitcoind will
* reject blocks as invalid. */
static inline bool can_roll(struct work *work)
{
return (work->pool && !stale_work(work, false) && work->rolltime && !work->clone);
return (work->pool && work->rolltime && !work->clone &&
work->rolls < 7000 && !stale_work(work, false));
}
static void roll_work(struct work *work)