Dash - Reinventing Cryptocurrency
Go to file
2015-02-01 09:23:04 +01:00
.tx Pull translations from transifex. 2015-01-31 19:17:24 +01:00
contrib Prepare transifex integration. 2015-01-30 11:39:55 +01:00
depends update gitian descriptors 2014-12-31 12:03:18 -07:00
doc Fix translation makefiles and documentation. 2015-01-30 12:31:22 +01:00
qa Update copyright year 2015 2015-01-15 11:31:35 +01:00
share Update bitcoinstrings. 2015-01-31 19:47:23 +01:00
src Pull translations from transifex. 2015-02-01 09:23:04 +01:00
.gitattributes Build identification strings 2012-04-10 18:16:53 +02:00
.gitignore Merged in Darksend/InstantX/Masternodes 2014-12-11 08:10:35 -07:00
autogen.sh autogen.sh: Stop passing --verbose to autoreconf 2013-11-27 17:29:00 -08:00
configure.ac version bump / enable IX 2015-01-27 14:52:31 -07:00
COPYING Fix icons and debian install shortcuts. 2015-01-16 09:34:26 +01:00
INSTALL Fix mac osx deploy scripts. 2015-01-16 10:19:59 +01:00
Makefile.am Brought over 10.18 changes from old branch 2014-12-11 08:36:02 -07:00
pkg.m4 autotools: switch to autotools buildsystem 2013-09-05 21:31:03 -04:00
README.md update docs and release notes 2015-01-12 11:23:07 +01:00

Darkcoin Core staging tree 0.11

http://www.darkcoin.io

Copyright (c) 2009-2015 Bitcoin Core Developers

Copyright (c) 2014-2015 Darkcoin Core Developers

What is Darkcoin?

Darkcoin is an experimental new digital currency that enables anonymous, instant payments to anyone, anywhere in the world. Darkcoin uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried out collectively by the network. Darkcoin Core is the name of open source software which enables the use of this currency.

For more information, as well as an immediately useable, binary version of the Darkcoin Core software, see http://www.darkcoin.io/downloads.

License

Darkcoin Core is released under the terms of the MIT license. See COPYING for more information or see http://opensource.org/licenses/MIT.

Building process

compiling Darkcoin from git

Use the autogen script to prepare the build environment.

./autogen.sh
./configure
make

precompiled binaries

Precompiled binaries are available at github, see https://github.com/darkcoinproject/darkcoin-binaries

Always verify the signatures and checksums.

Development tips and tricks

compiling for debugging

Run configure with the --enable-debug option, then make. Or run configure with CXXFLAGS="-g -ggdb -O0" or whatever debug flags you need.

debug.log

If the code is behaving strangely, take a look in the debug.log file in the data directory; error and debugging message are written there.

The -debug=... command-line option controls debugging; running with just -debug will turn on all categories (and give you a very large debug.log file).

The Qt code routes qDebug() output to debug.log under category "qt": run with -debug=qt to see it.

testnet and regtest modes

Run with the -testnet option to run with "play darkcoins" on the test network, if you are testing multi-machine code that needs to operate across the internet.

If you are testing something that can run on one machine, run with the -regtest option. In regression test mode blocks can be created on-demand; see qa/rpc-tests/ for tests that run in -regest mode.

DEBUG_LOCKORDER

Darkcoin Core is a multithreaded application, and deadlocks or other multithreading bugs can be very difficult to track down. Compiling with -DDEBUG_LOCKORDER (configure CXXFLAGS="-DDEBUG_LOCKORDER -g") inserts run-time checks to keep track of what locks are held, and adds warning to the debug.log file if inconsistencies are detected.