第19讲 比特币扩容与治理
Lesson 19: Bitcoin Scaling and Governance
💡 Self-learning Web3 is no easy task. As a newcomer to Web3, I'm putting together the simplest and most intuitive beginner tutorials. Aggregating quality open-source community resources to guide everyone from beginner to expert in Web3. Updated 1-3 lessons per week.
Follow me on Twitter: @bhbtc1337
Join the discussion group: Form Link
Open-sourced on GitHub: Get-Started-with-Web3
Recommended exchange for buying BTC / ETH / USDT: Binance Registration Link
Table of Contents
Introduction
As a decentralized system, Bitcoin has no central authority to decide technical upgrades. So how does Bitcoin upgrade? When the community disagrees on technical direction, how are disputes resolved?
The 2015-2017 "Bitcoin Scaling Debate" is the most important governance case in cryptocurrency history, defining the governance model for decentralized systems.
This chapter covers: the complete history of the scaling debate, soft fork vs. hard fork technical differences, how communities form consensus and implement upgrades, Bitcoin governance evolution, and lessons for blockchain governance.
The Bitcoin Scaling Debate (2015-2017)
📈 Origin of the Problem
Around 2015, the Bitcoin network became increasingly congested:
Bitcoin usage growth:
2010: A few hundred transactions/day
2015: 200,000-300,000 transactions/day
2017: Approaching 350,000 transactions/day
But block capacity was fixed:
Each block ≤ 1 MB
One block every ~10 minutes
→ Network frequently maxed out, fees skyrocketed
Direct impact: Confirmation times extended to hours/days; fees surged from pennies to tens of dollars; merchants like Steam and Microsoft stopped accepting BTC.
🏭 Two Camps
Camp 1: Big Blockers
Core view: Directly increase block size via hard fork (1 MB → 2 MB → 8 MB...). Figures: Gavin Andresen, Mike Hearn, Roger Ver ("Bitcoin Jesus"), Jihan Wu (Bitmain CEO). Projects: Bitcoin XT (2015), Bitcoin Classic (2016), Bitcoin Unlimited (2016-2017), Bitcoin Cash (2017). Philosophy: "Bitcoin should be a global payment system supporting massive transactions."
Camp 2: Small Blockers
Core view: Optimize existing blocks + Layer 2 scaling (SegWit + Lightning Network). Figures: Adam Back (Blockstream CEO), Greg Maxwell, Luke Dashjr, Pieter Wuille. Projects: Bitcoin Core, SegWit (BIP 141), Lightning Network. Philosophy: "Bitcoin must stay decentralized; big blocks make it impossible for ordinary people to run nodes."
🔥 Escalation Timeline (2016-2017)
- June 2015: Bitcoin XT released (8 MB blocks).
- Dec 2015: Hong Kong roundtable, temporary compromise reached.
- Feb 2016: Bitcoin Classic released (2 MB blocks).
- Dec 2016: Bitcoin Unlimited released (dynamic block size).
- May 2017: New York Agreement (SegWit + 2 MB hard fork).
- May 2017: UASF (User Activated Soft Fork) movement rises.
- Aug 1, 2017: Bitcoin Cash (BCH) forks off.
- Aug 24, 2017: SegWit activates.
Soft Fork vs. Hard Fork: Technical Mechanisms
Soft Fork
Definition: Upgrade that tightens or adds rules; new rules are a subset of old rules. Backward compatible — old nodes still work. Lower risk.
javascript// Old node sees SegWit transaction function isValidTransaction(tx) { if (!basicValidation(tx)) return false; // Witness data looks like "anyone can spend" to old nodes return true; // "Seems valid" } // New node verification function isValidTransactionNew(tx) { if (!basicValidation(tx)) return false; if (isSegWitTx(tx)) { return validateWitness(tx); // Strict verification } return true; }
Hard Fork
Definition: Upgrade that relaxes or modifies rules, breaking backward compatibility. Requires all nodes to upgrade — risk of permanent split.
javascript// Pre-fork validation function isValidBlock(block) { if (block.size > 1000000) return false; // 1 MB limit return validateTransactions(block); } // Post-fork validation function isValidBlockNew(block) { if (block.size > 2000000) return false; // 2 MB limit return validateTransactions(block); } // Result: Old nodes reject blocks > 1 MB
Philosophical Divide
Conservatives (soft fork supporters): "Decentralization first" — ordinary users should be able to run full nodes; all upgrades should be backward-compatible; better slow and stable; Layer 2 is the superior scaling solution.
Progressives (hard fork supporters): "Usability first" — Bitcoin should be a payment system; technical problems deserve technical solutions; iterate fast, adapt to market needs; on-chain transactions should be cheap and fast.
SegWit Activation: The Political Process
New York Agreement (May 2017)
Plan: SegWit2x — activate SegWit first (August), then 2 MB hard fork (November). Signatories: 56 companies, ~83% hash power, ~20 major exchanges. Problem: Bitcoin Core team refused to participate.
UASF Movement
Background: Miners were passive on SegWit activation. BIP 148 proposed users forcing SegWit by refusing non-SegWit blocks from August 1, 2017. Strategy: "Economic majority > hash power majority."
Resolution
- July 2017: SegWit reached 95% threshold, locked in.
- August 1: BCH forked off; SegWit activated on the main chain.
- November 2017: SegWit2x (2 MB hard fork) canceled due to strong opposition.
Result: Technical conservatism won.
The Bitcoin Split: BTC vs. BCH
Development Comparison
Bitcoin (BTC) — SegWit Route:
- SegWit activated (2017), Lightning Network (2018), Taproot (2021)
- 15,000+ nodes, 99%+ SHA-256 hash power, 40%+ crypto market cap
- Institutional adoption: Tesla, MicroStrategy, etc.
Bitcoin Cash (BCH) — Big Block Route:
- 32 MB blocks, low fees, fast confirmation
- 1,000-2,000 nodes, <5% hash power, ~1-2% of BTC market cap
- Further split: BSV forked from BCH (2018)
Market verdict: BTC's price went from $2,700 to $43,000+ (peak $69,000); BCH from $240 to $120-400. The market chose BTC's technical roadmap.
Bitcoin Governance Mechanisms
Governance Participants
- Developers: Propose technical improvements via BIP process and code quality.
- Miners: Execute consensus rules, decide fork choices via hash power.
- Economic nodes: Verify transactions/blocks, provide economic value (exchanges, wallets, payment processors).
- Users: Drive demand through market choices and community pressure.
- Investors: Provide capital and market cap support via price signals.
Checks and Balances
- Developers ↔ Miners: Developers propose, miners decide whether to execute; neither can force the other.
- Economic nodes ↔ Miners: Economic nodes can reject miner blocks; UASF proved economic nodes' ultimate authority.
- Users ↔ System: Users choose client software and "vote with their feet" (buy/sell).
Result: No single party can unilaterally control Bitcoin.
BIP Process
Types: Standards Track (protocol changes, need network consensus), Informational (guidelines, no consensus needed), Process (community procedure changes).
Flow: Idea → Informal discussion → Draft → Community review → Final → Implementation/testing → Network activation.
Activation Methods Evolution
| Method | Miner Voting | User Choice | Risk | Examples |
|---|---|---|---|---|
| Flag Day | No | No | High | Early upgrades |
| IsSuperMajority | Yes | No | Medium | BIP 34/65/66 |
| BIP 9 | Yes | No | Medium | SegWit (initial) |
| UASF | No | Yes | High | BIP 148 |
| Speedy Trial | Yes | Backup | Low | Taproot |
Historical Lessons and Future Outlook
Core Lessons
Technology and politics intertwine: Pure technical issues often involve deep value conflicts and interest disputes. Communication and education are as important as technical development.
Complexity of decentralized governance: No central authority means slow decision-making. Soft forks gain consensus more easily than hard forks. Backward compatibility is key to upgrade success.
Market's final verdict: Technical superiority is ultimately validated by markets. Network effects and liquidity matter more than technical details. BTC vs. BCH market performance proves this.
Future Directions
- Potential upgrades: Quantum resistance, privacy enhancement, smart contract expansion, cross-chain interoperability.
- Governance maturation: More formal BIP review processes, standardized testing procedures, clear activation criteria, improved communication tools.
Practical: Participating in Bitcoin Governance
Technical Contribution
- Run a node: Support network decentralization.
- Contribute code: Start with small bug fixes on Bitcoin Core GitHub .
- Review PRs: Check code for tests, documentation, style compliance, and compatibility.
Community Participation
Essential resources: Bitcoin-dev mailing list, BIPs repository, Bitcoin Core GitHub, Bitcoin Optech Newsletter.
Discussion platforms: Reddit r/Bitcoin, Bitcoin Talk, Twitter, Telegram/Discord groups.
Ways to contribute: Code review/testing, documentation/translation, technical articles, conference participation, newcomer mentoring.
FAQ
❓ Is Bitcoin governance truly decentralized?
Development is mainly led by Bitcoin Core; large mining pools and exchanges have significant influence; prominent figures carry more weight. But: Anyone can propose improvements, code review is open and transparent, no single party can decide alone, users can always choose different implementations. Conclusion: Relatively decentralized, but influence is not evenly distributed.
❓ What if Bitcoin faces a major disagreement again?
Possible outcomes: soft fork resolution, delayed implementation to find better solutions, or hard fork split (with market deciding the winner). Prevention: improve communication mechanisms, identify/address disagreements early, build more inclusive decision processes.
❓ How can ordinary users influence Bitcoin's development?
Directly: Run full nodes, choose wallets supporting specific solutions, participate in discussions, buy/sell to express position. Indirectly: Educate others, fund developers, promote merchant adoption, engage in policy discussions.
Conclusion
The Bitcoin Scaling Debate is the most important governance case in blockchain history. This three-year technical and political contest not only determined Bitcoin's technical path but defined the governance model for decentralized systems.
💡 Deep Insights
1. The myth of technical neutrality: Seemingly pure technical issues involve deep philosophical debates about what Bitcoin should be.
2. The art of decentralized governance: Requires delicate checks and balances, thorough communication, and ultimate market validation.
3. The value of compromise: In distributed systems, compromise is often more important than perfect solutions. SegWit succeeded by finding the balance between technical feasibility and political acceptability.
4. The power of time: Short-term disputes may cause fierce disagreement, but long-term, markets choose solutions best meeting user needs.
Bitcoin's governance mechanisms continue to evolve. Taproot's successful activation shows maturation. Future challenges include quantum computing, privacy enhancement, and increasingly complex international coordination.
The history of the scaling debate tells us: in the decentralized world, technical progress requires social consensus, and building consensus requires time, patience, and wisdom.
Challenge Quiz
Complete 5 questions, you need to get all correct to unlock the next chapter
If this lesson was helpful, please consider supporting the author ☕
Support Author · Buy Me a Coffee