hardfork: initialize current_fork_index in ctor

Also order init list to match actual runtime init order

Coverity 136605
pull/127/head
moneromooo-monero 6 years ago
parent 2362baf735
commit 157054b840
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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):
db(db),
original_version(original_version),
original_version_till_height(original_version_till_height),
forked_time(forked_time),
update_time(update_time),
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)
throw "window_size needs to be strictly positive";

Loading…
Cancel
Save