Nakamoto ResearchEarly Bitcoin source code characteristics |
Version | v0.3.0 | |
---|---|---|---|
Updated | |||
Author | obxium | License | BY-NC-ND |
“The design and coding started in 2007.”
– Satoshi Nakamoto
What about the Bitcoin source code?
Some engineers who’ve analyzed the code think that Bitcoin is most likely the work of an individual rather than the result of collaboration or teamwork.
In an email thread with Mike Hearn, Nakomoto wrote that he worked on Bitcoin for two years before releasing the source code and whitepaper.
Nakamoto authored original versions of Bitcoin in the C++ language, most likely under Microsoft Visual C++ (MSVC 2005 SP1 specifically mentioned in source comment).
Clues in source code comments point to development in a Microsoft Widows environment along with testing on Linux, Apple MacOS, and Microsoft Windows.
While code is one focus area, the comments within the code are also valuable metadata, which you can study separated from their context to quickly pick out details. Depending on how you capture outputs from the files which make up the source, you could accidentally pull in comments from third-party libraries which just add noise to Satoshi’s actual comments.
You can perform a rudimentary extraction C style comments from source
code with an awk
command like this:
/\/\*.*\*\// || /\/\/.*/ {print $0}' "${C_SOURCE_FILE}" awk '
Example from within the Bitcoin version 0.1.0 codebase root.
for f in $(find . -type f -name "*.cpp" -o -name "*.h")
do
awk '/\/\*.*\*\// || /\/\/.*/ {print $0}' "${f}" >> comments.txt
done
This yields a comments.txt
file with a little over 3k
lines of raw comments for you to peruse.
Again, this is a naive approach without support handling edge cases.
You must actually parse the C++ code with something like
g++
with certain options or Python if you want a higher
fidelity extraction of comments that properly handles most cases.
The code contains some interesting comment features and peculiar comment styles.
For example, inline comments typically start with 2 forward slash characters, followed by a space, and then the comment text. Many examples of unconventional inline commenting styles with more than 2 forward slashes exist throughout the codebase.
Code file | Line number | Forward slashes | Comment text |
---|---|---|---|
market.cpp |
258 | 6 | ////// delme, this is now done by AdvertInsert |
db.cpp |
452, 540 | 4 | //// debug print |
script.cpp |
702 | 4 | //// debug print |
main.cpp |
104, 1944, 2320, 2500 | 4 | //// debug print |
main.cpp |
1472 | 4 | //// debug print, delete this later |
net.cpp |
529 | 4 | //// debug print |
net.cpp |
315, 322 | 3 | /// debug print |
net.h |
491 | 3 | /// when NTP implemented, change to just nTime = GetAdjustedTime() |
ui.cpp |
2893, 2993 | 4 | //// debug print |
util.cpp |
366 | 3 | /// todo: Get time from NTP servers, then set a flag |
util.cpp |
367 | 3 | /// to make sure it doesn’t get changed again |
A search of GitHub C++ repositories for similar code comments produces only results from projects which started after the target time-frame of 2009-2010, but no results overlapping with the early Bitcoin era.
Given these unique commenting styles alone, one might wonder if the author wasn’t a professional engineer, or was trying to obscure the fact that they were a professional engineer.
Some reviewers have formed contestable opinions on Bitcoin source code quality, ranging from “It’s brilliant code. It’s production-grade C++.” to “So weird to see how shitty the code is.”
Others have pointed out that the code is of the quality expected by academic researchers or scientists from fields possibly other than Computer Science.
“Most CIA and NSA code that has been leaked has been developed on Windows using Visual Studio IIRC. The bitcoin code looks and feels a lot like of their projects but could easily be some NSA programmers side project.”
Any hacker can tell this was a one person project from looking at the code.”
Interesting commentary, and this statement by user
nadapkoe
is their only comment ever on HN, so perhaps
nadapkoe is a throwaway account.
╭───────────────────────────────────────────────────────────────────────╮
│ ⚠ THIS CONTENT MAKES NO CLAIMS ABOUT THE IDENTITY OF SATOSHI NAKAMOTO │
╰───────────────────────────────────────────────────────────────────────╯