Dash - Reinventing Cryptocurrency
Go to file
2014-12-25 11:20:18 -07:00
.tx qt: add transifex configuration file 2014-05-01 10:16:05 +02:00
contrib Brought over 10.18 changes from old branch 2014-12-11 08:36:02 -07:00
doc Improve support for start-many: 2014-12-14 06:06:39 +01:00
qa Update strings. 2014-12-12 12:44:25 +01:00
share build: fix release name strings for gitian builds 2014-09-25 10:56:39 +02:00
src fixed Darksend settings 2014-12-25 11:20:18 -07: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 Merged in Darksend/InstantX/Masternodes 2014-12-11 08:10:35 -07:00
COPYING Bump version numbers for 0.8 release 2013-01-30 14:19:09 -05:00
INSTALL Prettify some /Contrib READMEs 2013-10-21 20:07:31 -04: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 README.md 2014-12-12 13:05:25 +01:00

Darkcoin Core staging tree 0.11

http://www.darkcoin.io

Copyright (c) 2009-2014 Bitcoin Core Developers

Copyright (c) 2014 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.