Tweak final emission check

pull/88/head
jwinterm 6 years ago committed by wowario
parent ed5d4ccd1a
commit ee8e58f909
No known key found for this signature in database
GPG Key ID: 24DCBE762DE9C111

@ -93,7 +93,7 @@ namespace cryptonote {
const int emission_speed_factor = EMISSION_SPEED_FACTOR_PER_MINUTE - (target_minutes-1);
uint64_t base_reward = (MONEY_SUPPLY - already_generated_coins) >> emission_speed_factor;
if (base_reward < FINAL_SUBSIDY_PER_MINUTE*target_minutes)
if (base_reward <= FINAL_SUBSIDY_PER_MINUTE*target_minutes)
{
base_reward = FINAL_SUBSIDY_PER_MINUTE*target_minutes;
}

Loading…
Cancel
Save