hardfork: fix fork determination for historical heights
This commit is contained in:
parent
1b4fa00d7c
commit
807903bbbf
|
@ -332,7 +332,7 @@ int HardFork::get_voted_fork_index(uint64_t height) const
|
||||||
{
|
{
|
||||||
CRITICAL_REGION_LOCAL(lock);
|
CRITICAL_REGION_LOCAL(lock);
|
||||||
uint32_t accumulated_votes = 0;
|
uint32_t accumulated_votes = 0;
|
||||||
for (unsigned int n = heights.size() - 1; n > current_fork_index; --n) {
|
for (int n = heights.size() - 1; n >= 0; --n) {
|
||||||
uint8_t v = heights[n].version;
|
uint8_t v = heights[n].version;
|
||||||
accumulated_votes += last_versions[v];
|
accumulated_votes += last_versions[v];
|
||||||
uint32_t threshold = (window_size * heights[n].threshold + 99) / 100;
|
uint32_t threshold = (window_size * heights[n].threshold + 99) / 100;
|
||||||
|
|
Loading…
Reference in New Issue