Intro
Bitcoin’s halving is a protocol‑level event that reduces the block subsidy—the newly minted BTC awarded to a miner for appending a block—by 50 %. It occurs every 210 000 blocks, roughly every four years, and is hard‑coded into the consensus rules, so no party can alter its schedule without breaking the network. The first halving in 2012 cut the reward from 50 BTC to 25 BTC, and the most recent in May 2024 lowered it from 6.25 BTC to 3.125 BTC, tightening the rate at which new coins enter circulation.
工作原理/How it works
When a block is mined, the protocol checks the block height h; the reward R is calculated as
R = 50 BTC / 2⌊h / 210 000⌋.
Thus, after the 630 000th block (the third halving), the reward automatically switches from 6.25 BTC to 3.125 BTC without any external trigger. The reduction is deterministic: miners do not need to vote, and the change propagates instantly because every full node validates the new subsidy before accepting the block.
常见用例/Common use cases
- Mining economics models – Analysts plug the known future reward schedule into cash‑flow equations; for example, a miner with a 10 TH/s operation can forecast that by 2028 their block subsidy will be 1.5625 BTC, prompting them to rely more on transaction fees.
- Supply‑cap forecasting – The halving schedule is the primary driver behind Bitcoin’s 21 million limit; after the 2024 halving, the cumulative supply is projected to reach ~18.9 million BTC, leaving only ~2.1 million to be mined over the next three decades.
- Protocol design reference – Other PoW projects (e.g., Litecoin) adopt a similar halving cadence to emulate Bitcoin’s scarcity model, using the same 210 000‑block interval but with different initial rewards.
常见误解/Pitfalls
A common mistake is to assume that each halving will automatically double Bitcoin’s price because supply growth halves; market dynamics, macro‑economics, and demand elasticity play far larger roles, and price reactions after the 2016 and 2020 halvings were muted compared to the 2012 event. Another pitfall is overlooking the increasing importance of transaction fees: by the time the reward falls to 0.195 BTC (expected around 2140), miners will depend almost entirely on fees, so profitability calculations that ignore fee projections become meaningless. Finally, some developers mistakenly think the halving can be postponed to “smooth” miner earnings; because the rule is baked into the consensus layer, any attempt to modify it would cause a hard fork and likely split the network.
FAQ
Q1: What happens when the block subsidy reaches zero?
A: The subsidy drops to zero after the 33rd halving (around the year 2140); miners will then earn solely from transaction fees, and the network’s security will rely on the fee market’s ability to incentivize sufficient hash power.
Q2: Can a miner “skip” a halving by mining faster?
A: No. The halving is tied to block height, not wall‑clock time or individual miner speed. Even if a miner produced blocks at double the network rate temporarily, the reward would still halve once the height threshold is crossed.
Q3: Do all Bitcoin forks inherit the same halving schedule?
A: Not necessarily. Some forks, like Bitcoin Cash, kept the 210 000‑block interval but reset the subsidy, while others (e.g., Bitcoin SV) altered the interval or initial reward. Each chain’s codebase determines its own halving logic.