Merge pull request #5271

2790d4d3 hardfork: update last_versions on popped block (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2019-03-21 14:52:01 +02:00
commit cac4c3103a
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 3 additions and 0 deletions

View File

@ -317,9 +317,12 @@ void HardFork::on_block_popped(uint64_t nblocks)
uint64_t height;
for (height = old_chain_height - 1; height >= new_chain_height; --height)
{
version = versions.back();
last_versions[version]--;
versions.pop_back();
version = db.get_hard_fork_version(height);
versions.push_front(version);
last_versions[version]++;
}
// does not take voting into account