mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
Merge pull request #610
945ac78
hardfork: fix accepting v2 blocks too early (moneromooo-monero)
This commit is contained in:
commit
15e0cbd01e
@ -104,8 +104,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()
|
||||
return block_version == heights[current_fork_index].version
|
||||
&& voting_version >= heights[current_fork_index].version;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user