Neobytes - Reinventing Cryptocurrency https://neobytes.network/
Go to file
Darkcoin 3dcdfc6ff2 Merge pull request #96 from freynder/keepass
Implemented KeePass Integration
2015-01-12 10:52:07 -07:00
.tx qt: add transifex configuration file 2014-05-01 10:16:05 +02:00
contrib gitian changes, tooltips and version bump 2015-01-02 09:54:13 -07:00
depends update gitian descriptors 2014-12-31 12:03:18 -07:00
doc Update release notes for darkcoin 0.11 2015-01-01 17:00:03 +01:00
qa Update strings. 2014-12-12 12:44:25 +01:00
share typo 2015-01-02 17:00:04 +01:00
src Merge pull request #96 from freynder/keepass 2015-01-12 10:52:07 -07:00
.gitattributes
.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 Various fixes for 11.0.5 2015-01-12 10:04:28 -07:00
COPYING
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
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.