mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
hardfork: allow passing chain height in get(height) for convenience
This commit is contained in:
parent
5feebb4d87
commit
64a2aa3376
1 changed files with 4 additions and 1 deletions
|
@ -318,10 +318,13 @@ HardFork::State HardFork::get_state() const
|
|||
uint8_t HardFork::get(uint64_t height) const
|
||||
{
|
||||
CRITICAL_REGION_LOCAL(lock);
|
||||
if (height >= db.height()) {
|
||||
if (height > db.height()) {
|
||||
assert(false);
|
||||
return 255;
|
||||
}
|
||||
if (height == db.height()) {
|
||||
return get_current_version();
|
||||
}
|
||||
return db.get_hard_fork_version(height);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue