From b7d072069e67fc2d97a868c2e72608070418afe8 Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 29 Sep 2016 19:37:38 -0700 Subject: [PATCH] Update comment per review --- src/main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 5a8cd147d..55a4c36a1 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -3084,8 +3084,10 @@ bool ContextualCheckBlock(const CBlock& block, CValidationState& state, CBlockIn } // Coinbase transaction must include an output sending 20% of - // the block reward to `FOUNDERS_REWARD_SCRIPT` until the first - // subsidy halving block, with exception to the genesis block. + // the block reward to a founders reward script, until the last founders + // reward block is reached, with exception of the genesis block. + // The last founders reward block is defined as the block just before the + // first subsidy halving block, which occurs at halving_interval + slow_start_shift if ((nHeight > 0) && (nHeight <= consensusParams.GetLastFoundersRewardBlockHeight())) { bool found = false;