See Also
Will Bitcoin lose its #1 market cap crown? [Jun 2018 Opinion]
Ethereum has just overtaken Bitcoin! But, wait! We’re not talking about market cap… As you’ve probably seen reported elsewhere, ETH now (Jun/2018) has more unique active addresses than Bitcoin. Is this a sign of something different looming in the horizon? Will Bitcoin end its 9 year reign as king of cryptocurrencies? Are there other cryptocurrencies […]
Introduction to our commented Bitcoin source code section
Below you’ll find the main commented Bitcoin source code sections (sorted by section name and filename). Core amount.h – Defines the CAmount typedef, implements minimum and maximum valid amount range check. base58.cpp – The encoding function used for Bitcoin addresses. Base58 removes some potentially ambiguous characters from Base64 so Bitcoin addresses can be written down […]
We think Elon Musk IS the real Satoshi. For real. [Nov 2017 Humor]
We know what you’re thinking: this post can’t be serious. But it is. Like, dead serious. After dismissing the theory that Elon Musk is Satoshi Nakamoto as a joke for a long time, we went and had a closer look at the arguments behind this rumor and, as this piece from Entrepeneur put it, the […]
qt/bitcoin.cpp – Commented Bitcoin source code
qt/bitcoin.cpp is where Bitcoin Core initialization leads us next. main.cpp, the Bitcoin Qt application entry point, is basically just a stub that calls GuiMain() at qt/bitcoin.cpp So, by sticking to our strategy, I’ll step into the call stack which now has GuiMain() at the top. GuiMain GuiMain gets the GUI set up, connects Qt signals/slots, […]