hardfork: allow passing chain height in get(height) for convenience
This commit is contained in:
parent
5feebb4d87
commit
64a2aa3376
|
@ -318,10 +318,13 @@ HardFork::State HardFork::get_state() const
|
||||||
uint8_t HardFork::get(uint64_t height) const
|
uint8_t HardFork::get(uint64_t height) const
|
||||||
{
|
{
|
||||||
CRITICAL_REGION_LOCAL(lock);
|
CRITICAL_REGION_LOCAL(lock);
|
||||||
if (height >= db.height()) {
|
if (height > db.height()) {
|
||||||
assert(false);
|
assert(false);
|
||||||
return 255;
|
return 255;
|
||||||
}
|
}
|
||||||
|
if (height == db.height()) {
|
||||||
|
return get_current_version();
|
||||||
|
}
|
||||||
return db.get_hard_fork_version(height);
|
return db.get_hard_fork_version(height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue