pull down to refresh
0 sats \ 2 replies \ @bitcointerest 8 Dec 2023 \ on: Stacker Saloon
We are nowhere near the last halving. Any idea what will happen after the 2136 halving?
https://m.stacker.news/7274
after the 2136 halving
We will be all dead by then,... why do you care?
Live your bitcoin life today at maximum.
reply
2140: reward will be 0 BTC: --> return 0;
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;
}
reply