Skip to content

Instantly share code, notes, and snippets.

@YazzyYaz
Created April 22, 2019 16:35
Show Gist options
  • Select an option

  • Save YazzyYaz/709c77513e11cac1d01e89d08c299c27 to your computer and use it in GitHub Desktop.

Select an option

Save YazzyYaz/709c77513e11cac1d01e89d08c299c27 to your computer and use it in GitHub Desktop.
Code for bitcoin reward reduction
int64 CBlock::GetBlockValue(int64 nFees) const
{
int64 nSubsidy = 50 * COIN;
// Subsidy is cut in half every 4 years
nSubsidy >>= (nBestHeight / 210000);
return nSubsidy + nFees;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment