Fix for miners on reorg

Make sure dataset gets re-init'd if a reorg changes the epoch
This commit is contained in:
Howard Chu 2019-10-07 09:50:00 +01:00
parent 2675cf4483
commit f54301dd75
No known key found for this signature in database
GPG Key ID: FD2A70B44AB11BA7
1 changed files with 4 additions and 1 deletions

View File

@ -161,8 +161,11 @@ void rx_reorg(const uint64_t split_height) {
int i;
CTHR_MUTEX_LOCK(rx_mutex);
for (i=0; i<2; i++) {
if (split_height < rx_s[i].rs_height)
if (split_height <= rx_s[i].rs_height) {
if (rx_s[i].rs_height == rx_dataset_height)
rx_dataset_height = 1;
rx_s[i].rs_height = 1; /* set to an invalid seed height */
}
}
CTHR_MUTEX_UNLOCK(rx_mutex);
}