mirror of
https://github.com/monero-project/monero.git
synced 2024-11-18 00:37:43 +00:00
hardfork: move an assert so it actually works
An unsigned quantity is always >= 0
This commit is contained in:
parent
1e7fc9c093
commit
cec92c4fd3
1 changed files with 1 additions and 1 deletions
|
@ -103,8 +103,8 @@ bool HardFork::add(uint8_t block_version, uint64_t height)
|
||||||
|
|
||||||
while (versions.size() >= window_size) {
|
while (versions.size() >= window_size) {
|
||||||
const uint8_t old_version = versions.front();
|
const uint8_t old_version = versions.front();
|
||||||
|
assert(last_versions[old_version] >= 1);
|
||||||
last_versions[old_version]--;
|
last_versions[old_version]--;
|
||||||
assert(last_versions[old_version] >= 0);
|
|
||||||
versions.pop_front();
|
versions.pop_front();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue