Merge pull request #6938
[bitcoinplatinum.git] / README.md
blob5aa8c327df5e215c1710b2b05df63dbe278c01c6
1 Bitcoin Core integration/staging tree
2 =====================================
4 [![Build Status](https://travis-ci.org/bitcoin/bitcoin.svg?branch=master)](https://travis-ci.org/bitcoin/bitcoin)
6 https://www.bitcoin.org
8 What is Bitcoin?
9 ----------------
11 Bitcoin is an experimental new digital currency that enables instant payments to
12 anyone, anywhere in the world. Bitcoin uses peer-to-peer technology to operate
13 with no central authority: managing transactions and issuing money are carried
14 out collectively by the network. Bitcoin Core is the name of open source
15 software which enables the use of this currency.
17 For more information, as well as an immediately useable, binary version of
18 the Bitcoin Core software, see https://www.bitcoin.org/en/download.
20 License
21 -------
23 Bitcoin Core is released under the terms of the MIT license. See [COPYING](COPYING) for more
24 information or see http://opensource.org/licenses/MIT.
26 Development Process
27 -------------------
29 The `master` branch is regularly built and tested, but is not guaranteed to be
30 completely stable. [Tags](https://github.com/bitcoin/bitcoin/tags) are created
31 regularly to indicate new official, stable release versions of Bitcoin Core.
33 The contribution workflow is described in [CONTRIBUTING.md](CONTRIBUTING.md).
35 The developer [mailing list](https://lists.linuxfoundation.org/mailman/listinfo/bitcoin-dev)
36 should be used to discuss complicated or controversial changes before working
37 on a patch set.
39 Developer IRC can be found on Freenode at #bitcoin-core-dev.
41 Testing
42 -------
44 Testing and code review is the bottleneck for development; we get more pull
45 requests than we can review and test on short notice. Please be patient and help out by testing
46 other people's pull requests, and remember this is a security-critical project where any mistake might cost people
47 lots of money.
49 ### Automated Testing
51 Developers are strongly encouraged to write unit tests for new code, and to
52 submit new unit tests for old code. Unit tests can be compiled and run (assuming they weren't disabled in configure) with: `make check`
54 There are also regression and integration tests of the RPC interface, written
55 in Python, that are run automatically on the build server.
56 These tests can be run with: `qa/pull-tester/rpc-tests.py`
58 Every pull request is built for both Windows and Linux on a dedicated server,
59 and unit and sanity tests are automatically run. The binaries produced may be
60 used for manual QA testing — a link to them will appear in a comment on the
61 pull request posted by [BitcoinPullTester](https://github.com/BitcoinPullTester). See https://github.com/TheBlueMatt/test-scripts
62 for the build/test scripts.
64 ### Manual Quality Assurance (QA) Testing
66 Large changes should have a test plan, and should be tested by somebody other
67 than the developer who wrote the code.
68 See https://github.com/bitcoin/QA/ for how to create a test plan.
70 Translations
71 ------------
73 Changes to translations as well as new translations can be submitted to
74 [Bitcoin Core's Transifex page](https://www.transifex.com/projects/p/bitcoin/).
76 Translations are periodically pulled from Transifex and merged into the git repository. See the
77 [translation process](doc/translation_process.md) for details on how this works.
79 **Important**: We do not accept translation changes as GitHub pull requests because the next
80 pull from Transifex would automatically overwrite them again.
82 Translators should also subscribe to the [mailing list](https://groups.google.com/forum/#!forum/bitcoin-translators).