mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
hardfork: initialize current_fork_index in ctor
Also order init list to match actual runtime init order Coverity 136605
This commit is contained in:
parent
2362baf735
commit
157054b840
1 changed files with 4 additions and 3 deletions
|
@ -56,12 +56,13 @@ static uint8_t get_block_version(const cryptonote::block &b)
|
||||||
|
|
||||||
HardFork::HardFork(cryptonote::BlockchainDB &db, uint8_t original_version, uint64_t original_version_till_height, time_t forked_time, time_t update_time, uint64_t window_size, uint8_t default_threshold_percent):
|
HardFork::HardFork(cryptonote::BlockchainDB &db, uint8_t original_version, uint64_t original_version_till_height, time_t forked_time, time_t update_time, uint64_t window_size, uint8_t default_threshold_percent):
|
||||||
db(db),
|
db(db),
|
||||||
original_version(original_version),
|
|
||||||
original_version_till_height(original_version_till_height),
|
|
||||||
forked_time(forked_time),
|
forked_time(forked_time),
|
||||||
update_time(update_time),
|
update_time(update_time),
|
||||||
window_size(window_size),
|
window_size(window_size),
|
||||||
default_threshold_percent(default_threshold_percent)
|
default_threshold_percent(default_threshold_percent),
|
||||||
|
original_version(original_version),
|
||||||
|
original_version_till_height(original_version_till_height),
|
||||||
|
current_fork_index(0)
|
||||||
{
|
{
|
||||||
if (window_size == 0)
|
if (window_size == 0)
|
||||||
throw "window_size needs to be strictly positive";
|
throw "window_size needs to be strictly positive";
|
||||||
|
|
Loading…
Reference in a new issue