blockchain: remove unused calc of short_term_constraint

This commit is contained in:
stoffu 2019-04-09 17:46:54 +09:00
parent 5dbcceb664
commit 661f1fb8b2
No known key found for this signature in database
GPG Key ID: 41DAB8343A9EC012
1 changed files with 0 additions and 1 deletions

View File

@ -3916,7 +3916,6 @@ bool Blockchain::update_next_cumulative_weight_limit(uint64_t *long_term_effecti
new_weights[0] = long_term_block_weight;
long_term_median = epee::misc_utils::median(new_weights);
m_long_term_effective_median_block_weight = std::max<uint64_t>(CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE_V5, long_term_median);
short_term_constraint = m_long_term_effective_median_block_weight + m_long_term_effective_median_block_weight * 2 / 5;
weights.clear();
get_last_n_blocks_weights(weights, CRYPTONOTE_REWARD_BLOCKS_WINDOW);