Neobytes - Reinventing Cryptocurrency https://neobytes.network/
Go to file
2015-01-14 10:16:48 -07:00
.tx qt: add transifex configuration file 2014-05-01 10:16:05 +02:00
contrib merge branch '0.9' of https://github.com/bitcoin/bitcoin into devel-0.9 2015-01-12 07:42:34 +01:00
depends update gitian descriptors 2014-12-31 12:03:18 -07:00
doc updated darkcoin logo 2015-01-13 11:55:07 -07:00
qa Fixed attribution and a few Bitcoin references 2014-12-11 12:10:05 -07:00
share typo 2015-01-02 17:00:04 +01:00
src Fixed UI update bug 2015-01-14 10:16:48 -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 Coinbase Maturity / cleanup 2015-01-13 10:58:24 -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 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.