Difference between revisions of "Bitcoind"

From Bitcoin Wiki
Jump to: navigation, search
(History)
(History)
Line 32: Line 32:
 
| 2012-Dec-14
 
| 2012-Dec-14
 
| Windows32 / Linux / MacOS X
 
| Windows32 / Linux / MacOS X
| <ref>[https://bitcointalk.org/index.php?topic=130819.msg1399721#msg1399721
+
| <ref>[https://bitcointalk.org/index.php?topic=130819.msg1399721#msg1399721 Bitcoin-Qt/bitcoind version 0.7.2 released]</ref>
Bitcoin-Qt/bitcoind version 0.7.2 released]</ref>
 
 
|-
 
|-
 
| 0.7.1
 
| 0.7.1
 
| 2012-Oct-19
 
| 2012-Oct-19
 
| Windows32 / Linux / MacOS X
 
| Windows32 / Linux / MacOS X
| <ref>[https://bitcointalk.org/index.php?topic=119277.msg1283232#msg1283232
+
| <ref>[https://bitcointalk.org/index.php?topic=119277.msg1283232#msg1283232 Bitcoin-Qt/bitcoind version 0.7.1 released]</ref>  
Bitcoin-Qt/bitcoind version 0.7.1 released]</ref>  
 
 
|-
 
|-
 
| 0.7.0
 
| 0.7.0
Line 49: Line 47:
 
| 2012-Jun-25
 
| 2012-Jun-25
 
| Windows32 / Linux / MacOS X
 
| Windows32 / Linux / MacOS X
| <ref>[https://bitcointalk.org/index.php?topic=89877.msg989356#msg989356
+
| <ref>[https://bitcointalk.org/index.php?topic=89877.msg989356#msg989356 Bitcoin-Qt / bitcoind version 0.6.3 released]</ref>  
Bitcoin-Qt / bitcoind version 0.6.3 released]</ref>  
 
 
|-
 
|-
 
| 0.6.2
 
| 0.6.2
Line 237: Line 234:
 
|
 
|
 
|}
 
|}
 +
 +
Up to and including version 0.3.19 is the "Satoshi code". The founder retired from development with end of 2009.
  
 
==Theory of Operation==
 
==Theory of Operation==

Revision as of 13:53, 4 January 2013

Bitcoind is a program that implements the Bitcoin protocol for command line and remote procedure call (RPC) use. It is also the first Bitcoin client in the network's history. It is available under the MIT license in 32-bit and 64-bit versions for Windows, GNU/Linux-based OSes, and Mac OS X.

Prior to version 0.5, this service-provider client used a wxWidgets GUI as its default GUI. It is now instead bundled with Bitcoin-Qt.

Running

See running bitcoind for more detail and an example of the configuration file.

Bitcoind is a headless daemon, and also bundles a testing tool for the same daemon. It provides a JSON-RPC interface, allowing it to be controlled locally or remotely which makes it useful for integration with other software or in larger payment systems. Various commands are made available by the API.

To use locally, first start the program in daemon mode:

bitcoind -daemon


Then you can use the same program to execute API commands, e.g.:

bitcoind getinfo
bitcoind listtransactions


To stop the bitcoin daemon, execute:

bitcoind stop

History

Version Date Supported platforms Reference
0.7.2 2012-Dec-14 Windows32 / Linux / MacOS X [1]
0.7.1 2012-Oct-19 Windows32 / Linux / MacOS X [2]
0.7.0 2012-Sep-17 Windows32 / Linux / MacOS X [3]
0.6.3 2012-Jun-25 Windows32 / Linux / MacOS X [4]
0.6.2 2012-May-08 Windows32 / Linux / MacOS X [5]
0.6.1 2012-May-04 Windows32 / Linux / MacOS X
0.6.0 2012-Mar-30 Windows32 / Linux / MacOS X [6]
0.5.3.1 2012-Mar-17 Windows32 [7]
0.5.3 2012-Mar-14 Windows32 / Linux / MacOS X [8]
0.5.2 2012-Jan-09 Windows32 / Linux / MacOS X [9]
0.5.1 2011-Dec-15 Windows32 / Linux / MacOS X [10]
0.5.0 2011-Nov-21 Windows32 / Linux / MacOS X [11]
0.4.0 2011-Sep-23 Windows32 / Linux / MacOS X [12]
0.3.24 2011-Jul-08 Windows32 / Linux / MacOS X [13]
0.3.23 2011-Jun-13 Windows32 / Linux / MacOS X [14]
0.3.22 2011-Jun-05 Windows32 / Linux / MacOS X [15]
0.3.21 2011-Apr-27 Windows32 / Linux / MacOS X [16]
0.3.20 2011-Feb-21 Windows32 / Linux / MacOS X [17]
0.3.19 2010-12-12 Windows32 / Linux / MacOS X [18]
0.3.18 2010-12-08 Windows32 / Linux / MacOS X [19]
0.3.17 2010-11-25 Windows32 / Linux / MacOS X [20]
0.3.15 2010-11-13 Windows32 / Linux [21]
0.3.14 2010-10-21 Windows32 / Linux [22]
0.3.13 2010-10-01 Windows32 / Linux / MacOS X [23]
0.3.12 2010-09-07 Windows32 / Linux [24]
0.3.11 2010-08-27 Windows32 / Linux / MacOS X [25]
0.3.10 2010-08-15 Windows32 / Linux32/64 / MacOS X [26]
0.3.8.1 2010-08-09 Linux64 [27]
0.3.8 2010-08-03 Windows32 / Linux / MacOS X [28]
0.3.7 2010-08-01 Windows32 / Linux / MacOS X
0.3.6 2010-07-29 Windows32 / Linux / MacOS X [29]
0.3.3 2010-07-25 Windows32 / Linux / MacOS X [30]
0.3.2.5 2010-07-24 Windows32 / Linux [31]
0.3.2 2010-07-17 Windows32 / Linux / MacOS X [32]
0.3.1 2010-07-15 Windows32 / Linux [33]
0.3.0 2010-07-06 Windows32 / Linux / MacOS X [34]
0.2.0 2009-12-17 Windows32 / Linux [35]
0.1.5 2009-02-04 Windows32
0.1.3 2009-01-13 Windows32
0.1.2 2009-01-12 Windows32
0.1.0 2009-01-09 Windows32

Up to and including version 0.3.19 is the "Satoshi code". The founder retired from development with end of 2009.

Theory of Operation

bitcoind is a multithreaded C++ program. It is designed to be portable across Windows, Mac, and Linux systems. The multithreaded aspect leads to some complexity and the use of certain code patterns to deal with concurrency that may be unfamiliar to many programmers. Also, the code is aggressive in the use of C++ constructs, so it will help to be fluent with map, multimap, set, string, vector, iostream, and templates. As is typical of a C++ program, a lot of code tends to end up in the header files so be sure to search both the .cpp and .h files when looking for a function.

The client is oriented around several major operations, which are described in separate detailed articles and summarized in the following sections.


Initialization and Startup

Upon startup, the client performs various initialization routines including starting multiple threads to handle concurrent operations.

Node Discovery

The client uses various techniques to find out about other Bitcoin nodes that are currently connected to the network.

Node Connectivity

The client initiates and maintains connections to other nodes.

Sockets and Messages

The client processes messages from other nodes and sends messages to other nodes using socket connections.

Block Exchange

Nodes advertise their inventory of blocks to each other and exchange blocks to build block chains.

Transaction Exchange

Nodes exchange and relay transactions with each other. The client associates transactions with bitcoin addresses in the local wallet.

Wallet Services

The client can create transactions using the local wallet. The client associates transactions with bitcoin addresses in the local wallet. The client provides a service for managing the local wallet.

RPC Interface

The client offers an JSON-RPC interface over HTTP over sockets to perform various operational functions and to manage the local wallet.

User Interface

Bitcoind's current user interface is the command line while it used to be based on wxWidgets. A graphical user interface is now provided by Bitcoin-qt in version 0.5+ for the reference client.

Troubleshooting

I get "Error loading blkindex.bat" when I try to run the client

blkindex.dat is part of the database that stores the local copy of the blockchain which may have become corrupted. Open the Bitcoin data dir:

Windows: %APPDATA%\Bitcoin Linux: ~/.bitcoin Mac: ~/Library/Application Support/Bitcoin/

Make a backup of that entire folder, then delete everything EXCEPT wallet.dat. Start bitcoind again and it will download a fresh copy of the blockchain.

See Also

External Links

References

`