Really Only 21 Million Bitcoins? - Bitcoin-Minded Memo 5 #bitcoin #limitedsupply

16 days ago
3

How can it be that there will really only ever be 21 million bitcoins created? Who says? In this Bitcoin-Mindedâ„¢ Memo, Pasco answers these questions for you.

If you know how to read code, the actual code from the Bitcoin software that defines this limit is pasted below.

Want to learn more about how to use bitcoin for protections, security, and wealth? We can help you learn at www.Bitcoin-Minded.com.

Take advantage of our free course trial offer below:

For individuals and families: www.bitcoin-minded.com/people/trial
For business owners: www.bitcoin-minded.com/business/trial
For financial advisors: www.bitcoin-minded.com/advisors/trial

CAmount GetBlockSubsidy(int nHeight, const Consensus::Params& consensusParams)
{
int halvings = nHeight / consensusParams.nSubsidyHalvingInterval;
// Force block reward to zero when right shift is undefined.
if (halvings = 64)
return 0;

CAmount nSubsidy = 50 * COIN;
// Subsidy is cut in half every 210,000 blocks which will occur approximately every 4 years.
nSubsidy = halvings;
return nSubsidy;
}

// consensusParams.nSubsidyHalvingInterval = 210000.

Loading comments...