Go to file
Thomas Baumbach a298006598 v0.6 RC1
- increased minimum chain length for submission to 7
- additional triggers for reconnect on connection problems
2013-10-12 21:07:14 +02:00
contrib Primecoin: Update win32 gitian build boost descriptor 2013-07-04 21:35:07 +01:00
doc Build instructions for solaris 2013-08-05 22:20:32 +03:00
share Primecoin: Update Mac Qt build info 2013-08-09 11:30:31 +03:00
src v0.6 RC1 2013-10-12 21:07:14 +02:00
.gitattributes Build identification strings 2012-04-10 18:16:53 +02:00
.gitignore Primecoin: Merge from bitcoin-0.8.2 2013-06-19 20:17:13 +01:00
COPYING Primecoin: Update license file COPYING 2013-07-05 06:29:25 +01:00
INSTALL Update master 2012-06-21 09:36:20 +08:00
README.md cleanup info 2013-09-03 10:33:19 +02:00
bitcoin-qt-win64.pro Added linker flags that allow bundling libgmp.so with the binary release on Linux. 2013-07-25 15:10:24 +03:00
bitcoin-qt.pro Primecoin: Add Mac OS X icon 2013-08-09 11:30:20 +03:00

README.md

Primecoin High Performance Version (Pool Edition)

This is a pool mining version based on mikaelh's high performance version of Sunny King's Primecoin tree.

Features:

  • pool mining client
  • getwork-protocol (with longpoll-support)
  • code integration into original client

See forked project for more information.

Primecoin integration/staging tree

http://primecoin.org

Copyright (c) 2013 Primecoin Developers

Copyright (c) 2009-2013 Bitcoin Developers

Copyright (c) 2011-2013 PPCoin Developers

What is Primecoin?

Primecoin is an experimental cryptocurrency that introduces the first scientific computing proof-of-work to cryptocurrency technology. Primecoin's proof-of-work is an innovative design based on searching for prime number chains, providing potential scientific value in addition to minting and security for the network. Similar to Bitcoin, Primecoin enables instant payments to anyone, anywhere in the world. It also uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried out collectively by the network. Primecoin is also the name of the open source software which enables the use of this currency.

For more information, as well as an immediately useable, binary version of the Primecoin client sofware, see http://primecoin.org.

License

Primecoin is released under conditional MIT license. See COPYING` for more information.

Development process

Developers work in their own trees, then submit pull requests when they think their feature or bug fix is ready.

If it is a simple/trivial/non-controversial change, then one of the Bitcoin development team members simply pulls it.

If it is a more complicated or potentially controversial change, then the patch submitter will be asked to start a discussion (if they haven't already) on the ppcoin/primecoin forum (http://ppcointalk.org).

The patch will be accepted if there is broad consensus that it is a good thing. Developers should expect to rework and resubmit patches if the code doesn't match the project's coding conventions (see doc/coding.txt) or are controversial.

The master branch is regularly built and tested, but is not guaranteed to be completely stable. Tags are created regularly to indicate new official, stable release versions of Primecoin.

Testing

Testing and code review is the bottleneck for development; we get more pull requests than we can review and test. Please be patient and help out, and remember this is a security-critical project where any mistake might cost people lots of money.

Automated Testing

Developers are strongly encouraged to write unit tests for new code, and to submit new unit tests for old code.

Unit tests for the core code are in src/test/. To compile and run them:

cd src; make -f makefile.unix test

Unit tests for the GUI code are in src/qt/test/. To compile and run them:

qmake BITCOIN_QT_TEST=1 -o Makefile.test bitcoin-qt.pro
make -f Makefile.test
./bitcoin-qt_test

Manual Quality Assurance (QA) Testing

Large changes should have a test plan, and should be tested by somebody other than the developer who wrote the code.

See https://github.com/bitcoin/QA/ for how to create a test plan.