Merge pull request #413

cec92c4 hardfork: move an assert so it actually works (moneromooo-monero)
release-v0.4.0.1
Riccardo Spagni 9 years ago
commit ad1c3a715b
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -103,8 +103,8 @@ bool HardFork::add(uint8_t block_version, uint64_t height)
while (versions.size() >= window_size) {
const uint8_t old_version = versions.front();
assert(last_versions[old_version] >= 1);
last_versions[old_version]--;
assert(last_versions[old_version] >= 0);
versions.pop_front();
}

Loading…
Cancel
Save