mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2025-01-12 04:32:35 -03:00
Merge pull request #537
a74cc1b
hardfork: only accept major versions we know about (moneromooo-monero)
This commit is contained in:
commit
4550717464
1 changed files with 1 additions and 0 deletions
|
@ -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
|
bool HardFork::do_check(uint8_t block_version, uint8_t voting_version) const
|
||||||
{
|
{
|
||||||
return block_version >= heights[current_fork_index].version
|
return block_version >= heights[current_fork_index].version
|
||||||
|
&& block_version <= get_ideal_version()
|
||||||
&& voting_version >= heights[current_fork_index].version;
|
&& voting_version >= heights[current_fork_index].version;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue