You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a 'getwork' CPU mining client for Bitcoin. It is pure-python, and therefore very, very slow. The purpose is to provide a reference implementation of a miner, for study.
20
+
21
+
### [Qos](/contrib/qos) ###
22
+
23
+
A Linux bash script that will set up tc to limit the outgoing bandwidth for connections to the Bitcoin network. This means one can have an always-on bitcoind instance running, and another local bitcoind/bitcoin-qt instance which connects to this node and receives blocks from it.
24
+
25
+
### [Seeds](/contrib/seeds) ###
26
+
Utility to generate the pnSeed[] array that is compiled into the client.
27
+
28
+
### [SpendFrom](/contrib/spendfrom) ###
29
+
30
+
Use the raw transactions API to send coins received on a particular
31
+
address (or addresses).
32
+
33
+
### [TestGen](/contrib/testgen) ###
34
+
Utilities to generate test vectors for the data-driven Bitcoin tests.
Copy file name to clipboardExpand all lines: doc/README.md
+8-11Lines changed: 8 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,22 +3,15 @@ Bitcoin 0.8.2 BETA
3
3
4
4
Copyright (c) 2009-2013 Bitcoin Developers
5
5
6
+
License
7
+
---------------------
6
8
Distributed under the [MIT/X11 software license](http://www.opensource.org/licenses/mit-license.php).
7
9
This product includes software developed by the OpenSSL Project for use in the [OpenSSL Toolkit](http://www.openssl.org/). This product includes
8
10
cryptographic software written by Eric Young ([[email protected]](mailto:[email protected])), and UPnP software written by Thomas Bernard.
9
11
10
-
11
-
Intro
12
-
---------------------
13
-
Bitcoin is a free open source peer-to-peer electronic cash system that is
14
-
completely decentralized, without the need for a central server or trusted
15
-
parties. Users hold the crypto keys to their own money and transact directly
16
-
with each other, with the help of a P2P network to check for double-spending.
17
-
18
-
19
12
Setup
20
13
---------------------
21
-
[Bitcoin-Qt](http://bitcoin.org/en/download) is the original Bitcoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Bitcoin transactions; depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more.
14
+
[Bitcoin-Qt](http://bitcoin.org/en/download) is the original Bitcoin client and it builds the backbone of the network. However, it downloads and stores the entire history of Bitcoin transactions (which is currently several GBs); depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more.
22
15
23
16
### Unix
24
17
@@ -44,17 +37,21 @@ Unpack the files into a directory and run bitcoin-qt.exe.
44
37
* See the documentation at the [Bitcoin Wiki](https://en.bitcoin.it/wiki/Main_Page)
45
38
for help and more information.
46
39
* Ask for help on [#bitcoin](http://webchat.freenode.net?channels=bitcoin) on Freenode. If you don't have an IRC client use [webchat here](http://webchat.freenode.net?channels=bitcoin).
47
-
* Ask for help on the [BitcoinTalk](https://bitcointalk.org/) forums.
40
+
* Ask for help on the [BitcoinTalk](https://bitcointalk.org/) forums, in the [technical support board](https://bitcointalk.org/index.php?board=4.0).
48
41
49
42
Building
50
43
---------------------
44
+
The following are developer notes on how to build Bitcoin on your native platform. They are not complete guide, but include notes on the necessary libraries, compile flags, etc.
45
+
51
46
-[Bitcoin-Qt Readme](readme-qt.md)
52
47
-[OSX Build Notes](build-osx.md)
53
48
-[Unix Build Notes](build-unix.md)
54
49
-[Windows Build Notes](build-msw.md)
55
50
56
51
Development
57
52
---------------------
53
+
The Bitcoin repo's [root README](https://github.com/bitcoin/bitcoin/blob/master/README.md) contains relevant information on the development process and automated testing.
0 commit comments