Update comment per review

This commit is contained in:
Simon 2016-09-29 19:37:38 -07:00
parent 22dadb35ec
commit b7d072069e
1 changed files with 4 additions and 2 deletions

View File

@ -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;