Created
April 22, 2019 16:35
-
-
Save YazzyYaz/709c77513e11cac1d01e89d08c299c27 to your computer and use it in GitHub Desktop.
Code for bitcoin reward reduction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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