What is main.cpp for in bitcoind?

1

What does the main.cpp source-code file do? I know what main.cpp files are for in general, but specifically in the case of bitcoin?

Kinnard Hockenhull

Posted 2012-12-13T17:28:14.833

Reputation: 2 285

Question was closed 2015-04-02T19:47:16.773

I think this is a very, very wide question best answered perhaps by an issue filed on the Bitcoin issue tracker asking for inline documentation on the functions and methods in this file. It's not a very good question to be answered in this forum.Colin Dean 2012-12-13T20:07:59.057

2It's totally NOT a "wide question", it's very specific instead. Either we accept [tag:source-code] questions, or we don't; if we do, then this question is perfectly valid.o0'. 2012-12-14T19:04:22.680

Answers

4

It just contains an apparently random collection of functions used by the program. It also declares some global structures such as the main lock, the transaction pool, orphan block tracking, and so on. It contains high-level block and transaction functions. Ironically, it does not contain the actual main function -- that's in init.cpp.

David Schwartz

Posted 2012-12-13T17:28:14.833

Reputation: 46 931