Skip to content

Crypto-Expert/sibcoin

This branch is up to date with Siberian-chervonets/sibcoin:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0230d84 · Jul 4, 2020
Jan 16, 2018
Feb 6, 2016
Oct 10, 2018
May 13, 2020
Jun 30, 2020
Mar 2, 2018
Feb 7, 2019
Jul 4, 2020
May 4, 2020
May 16, 2020
Jul 4, 2019
Jul 1, 2020
Oct 29, 2014
Feb 7, 2019
May 13, 2020
Feb 8, 2019
Feb 6, 2019
Jun 7, 2020
Aug 21, 2018
Feb 5, 2019
Feb 8, 2019
Oct 9, 2018
Jun 7, 2020
Jan 12, 2018
Jun 7, 2020
Sep 26, 2018
Sep 4, 2018

Repository files navigation

Sibcoin Core staging tree

Copyright (c) 2009-2018 Bitcoin Core Developers

Copyright (c) 2014-2019 Dash Core Developers

Copyright (c) 2015-2020 Sibcoin Core Developers

What is Sibcoin?

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

License

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

Development Process

Building process

compiling Sibcoin from git

Use the autogen script to prepare the build environment.

./autogen.sh
./configure
make

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 sibcoins" 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 -regtest mode.

DEBUG_LOCKORDER

SibCore 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.

Packages

No packages published

Languages

  • C++ 54.7%
  • C 30.7%
  • Python 8.4%
  • CSS 1.9%
  • M4 1.5%
  • HTML 1.0%
  • Other 1.8%