hardfork: only accept major versions we know about

This commit is contained in:
moneromooo-monero
2015-12-14 08:57:59 +00:00
parent 3a4db6346b
commit a74cc1bee2

View File

@@ -105,6 +105,7 @@ uint8_t HardFork::get_effective_version(uint8_t voting_version) const
bool HardFork::do_check(uint8_t block_version, uint8_t voting_version) const
{
return block_version >= heights[current_fork_index].version
&& block_version <= get_ideal_version()
&& voting_version >= heights[current_fork_index].version;
}