Related Posts
How many lines of code are there inside Bitcoin-Core client?
According to cloc this is the line count breakdown, 87% of the project is all C/C++ header files and code. http://cloc.sourceforge.net v 1.60 T=7.23 s (72.2 files/s, 43792.9 lines/s) ——————————————————————————- Language files blank comment code ——————————————————————————- C++ 244 9985 6246 211500 C/C++ Header 188 5346 4617 35399 Bourne Shell 26 2576 2571 20090 make 12 […]
How to actually build bitcoin on Mac OSX 10.9.1
First of all, if you have Macports, do yourself a favor and get rid of it. Then make sure you have Homebrew installed and all the packages installed by it up to date. 1. Let’s install all the dependencies for Bitcoin hacking. brew install autoconf automake berkeley-db4 boost miniupnpc openssl pkg-config protobuf qt libtool 2. […]
How to import a backed up wallet in Bitcoin-Qt
The Bitcoin-Qt client has an export feature, but not an import feature, importing a wallet is a bit of a manual process and it can be quite scary for the non-computer saavy since you need to do this kind of stuff because you got a new computer or your old one broke. First, close the […]