Every revolution starts with a small lie. Or at least, a carefully staged illusion. A recently unearthed debug file from Bitcoin's earliest days reveals a truth that will unsettle the true believers: Satoshi Nakamoto ran not one, but two nodes. At block 49, the network consisted of exactly three nodes. That means a single anonymous actor controlled 66% of the hash power. The founding myth of decentralized consensus? It was a bootstrap illusion.
The Context: What the Debug File Shows
The debug logs, preserved from Bitcoin Core version 0.1.0, show that Satoshi connected two separate instances of the client to the network. This isn't a bug; it's a deliberate setup. At that point, only one other node—likely Hal Finney or an early tester—was online. So the network that would become the poster child for permissionless, trustless consensus was actually a three-node cluster with one dictator. The file is a timestamped record of peer connections. It doesn't show transaction censorship, but it shows the capability. If Satoshi had wanted to double-spend or reverse a block, he could have orchestrated a 51% attack using his own two nodes.
The Core: Implications for Network Bootstrap Theory
Let's quantify this. In a proof-of-work network with three equal-hash-power nodes, a single entity controlling two nodes holds 66.7% of the hashrate. That is textbook centralization. The Nakamoto Consensus—the mechanism that supposedly hardens Bitcoin against sybil attacks—was, in its infancy, completely vulnerable to the very entity that invented it. The network was only as secure as Satoshi's goodwill.
I've built similar bootstrap simulations in Python, modeling network resilience as a function of node count. The code is trivial:
import numpy as np
# Simulate control probability nodes = 3 satoshi_nodes = 2 control_ratio = satoshi_nodes / nodes print(f'Satoshi controls {control_ratio*100:.1f}% of network hashrate') ```
Output: Satoshi controls 66.7% of network hashrate. That is not decentralization. That is an oligarchy of one.
Now compare to today: over 15,000 reachable nodes, thousands of miners, and a hashrate that would require billions of dollars to attack. The network evolved. But the early period was fragile. The myth of 'always decentralized' is a convenient historical gloss. The reality is that every bootstrapped protocol must pass through a 'trusted setup' phase, even if that trust is vested in an anonymous creator.
The Contrarian Angle: Centralization as a Survival Trait
The orthodox narrative holds that Bitcoin's value proposition is its permanent, hardened decentralization. But this discovery suggests the opposite: Bitcoin succeeded because one entity was willing to act as a benevolent dictator during the most vulnerable phase. Without Satoshi's dual-node control, the network might have stalled. Imagine if the other node went offline—Satoshi's own nodes would still maintain 100% uptime. He was providing a safety net.
In my work auditing crypto projects, I've seen this pattern repeatedly: the founders run multiple validators, seed the liquidity, or control governance multisigs during the first weeks. It's not a bug; it's a feature of network bootstrap. The industry preaches decentralization but practices centralized launch. The hypocrisy is not a flaw—it's a necessary compromise.
Tracing the liquidity veins beneath the market, we see that early concentration of control is correlated with later network success. Ethereum had a pre-mine. Solana had a foundation-controlled initial supply. Bitcoin had a single-operator network. The macro lesson: decentralization is an emergent property, not an initial condition.
The Takeaway: What This Means for Today's Networks
Does this discovery invalidate Bitcoin? No. If anything, it validates the resilience of the design. The network survived its own creator's absolute power and eventually transitioned to a distributed state. That's a testament to the protocol's incentive structure, not a flaw.
But for current projects that claim 'code is law' while their governance tokens are locked in a three-signature multisig controlled by founders, this is a mirror. Shorting the illusion of permanence is a profitable trade—but only if you understand that the illusion itself is a necessary stepping stone.
The question we should ask is not 'Was Bitcoin ever truly decentralized?' but 'At what point does centralization become a liability rather than a lifeline?' For Bitcoin, that point came when the network reached critical mass—around 10,000 nodes. For most altcoins today, the transition hasn't happened.
Entropy in the ledger, order in the chaos. The debug file is a reminder that every order emerges from a prior concentration of energy. Bitcoin's early centralization is not a scandal; it's a natural law of network formation.