Skip to content

Commit

Permalink
Update to 3 minute minimum time
Browse files Browse the repository at this point in the history
  • Loading branch information
catcoiner committed Apr 25, 2015
1 parent bca1eaf commit 0cccd2c
Show file tree
Hide file tree
Showing 32 changed files with 248 additions and 559 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Expand Up @@ -31,4 +31,4 @@ qrc_*.cpp
.DS_Store
build

!src/leveldb-*/Makefile
!src/leveldb/Makefile
2 changes: 2 additions & 0 deletions CREDITS
Expand Up @@ -12,6 +12,8 @@ etvblu1
0 (zerodrama), Minister of Disinformation
Maverickthenot-so-noob
Andy Hecker (Slimepuppy)
ambethia
nebajoth

And most importantly, the reason the intarwebz can haz cheezeburger
THE CATS
Expand Down
26 changes: 11 additions & 15 deletions README.md
@@ -1,25 +1,25 @@
Catcoin integration/staging tree
================================

http://www.catcoin.pw
http://www.catcoin.org

Copyright (c) 2009-2013 Bitcoin Developers
Copyright (c) 2011-2013 Litecoin Developers
Copyright (c) 2013-2014 Catcoin Developers
See the file CREDITS for further info on the cats responsible for this

What is Catcoin?
----------------

Catcoin is a cat version of Litecoin using scrypt as a proof-of-work algorithm but using the same
blockchain parameters as Bitcoin:
Catcoin is a version of the Litecoin cryptographic currency, using scrypt
as a proof-of-work algorithm, and using substantially similiar blockchain
parameters to Bitcoin:
- 50 coins per block
- 10 minutes block targets
- Subsidy halves in 210k blocks
- 21 million total coins
- 36 blocks to retarget difficulty
- 1 block difficulty adjustment, based on a PID control loop adjustment algorithm

For more information, as well as an immediately useable, binary version of
the Catcoin client sofware, see http://www.catcoin.pw.
the Catcoin client sofware, see http://www.catcoin.org

License
-------
Expand All @@ -36,19 +36,15 @@ their feature or bug fix is ready.
If it is a simple/trivial/non-controversial change, then one of the Catcoin
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
[mailing list](http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development).
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 #catcoin-dev on IRC. (on the [freenode](http://www.freenode.net) network)

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](https://github.com/bitcoin/bitcoin/tags) are created
regularly to indicate new official, stable release versions of Catcoin.

Testing
-------

Expand All @@ -68,7 +64,7 @@ Unit tests for the core code are in `src/test/`. To compile and run them:

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
qmake BITCOIN_QT_TEST=1 -o Makefile.test catcoin-qt.pro
make -f Makefile.test
./catcoin-qt_test

16 changes: 8 additions & 8 deletions bitcoin-qt.pro → catcoin-qt.pro
@@ -1,7 +1,7 @@
TEMPLATE = app
TARGET = catcoin-qt
macx:TARGET = "Catcoin-Qt"
VERSION = 0.8.7
VERSION = 0.8.9
INCLUDEPATH += src src/json src/qt
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
Expand Down Expand Up @@ -307,7 +307,7 @@ SOURCES += src/qt/bitcoin.cpp \
src/txdb.cpp \
src/qt/splashscreen.cpp

RESOURCES += src/qt/bitcoin.qrc
RESOURCES += src/qt/catcoin.qrc

FORMS += src/qt/forms/sendcoinsdialog.ui \
src/qt/forms/coincontroldialog.ui \
Expand Down Expand Up @@ -379,7 +379,7 @@ OTHER_FILES += README.md \
doc/*.rst \
doc/*.txt \
doc/*.md \
src/qt/res/bitcoin-qt.rc \
src/qt/res/catcoin-qt.rc \
src/test/*.cpp \
src/test/*.h \
src/qt/test/*.cpp \
Expand All @@ -396,15 +396,15 @@ isEmpty(BOOST_THREAD_LIB_SUFFIX) {
}

isEmpty(BDB_LIB_PATH) {
macx:BDB_LIB_PATH = /opt/local/lib/db48
macx:BDB_LIB_PATH = /opt/local/lib/db53
}

isEmpty(BDB_LIB_SUFFIX) {
macx:BDB_LIB_SUFFIX = -4.8
macx:BDB_LIB_SUFFIX = -5.3
}

isEmpty(BDB_INCLUDE_PATH) {
macx:BDB_INCLUDE_PATH = /opt/local/include/db48
macx:BDB_INCLUDE_PATH = /opt/local/include/db53
}

isEmpty(BOOST_LIB_PATH) {
Expand All @@ -416,7 +416,7 @@ isEmpty(BOOST_INCLUDE_PATH) {
}

win32:DEFINES += WIN32
win32:RC_FILE = src/qt/res/bitcoin-qt.rc
win32:RC_FILE = src/qt/res/catcoin-qt.rc

win32:!contains(MINGW_THREAD_BUGFIX, 0) {
# At least qmake's win32-g++-cross profile is missing the -lmingwthrd
Expand All @@ -440,7 +440,7 @@ macx:HEADERS += src/qt/macdockiconhandler.h src/qt/macnotificationhandler.h
macx:OBJECTIVE_SOURCES += src/qt/macdockiconhandler.mm src/qt/macnotificationhandler.mm
macx:LIBS += -framework Foundation -framework ApplicationServices -framework AppKit -framework CoreServices
macx:DEFINES += MAC_OSX MSG_NOSIGNAL=0
macx:ICON = src/qt/res/icons/bitcoin.icns
macx:ICON = src/qt/res/icons/catcoin.icns
macx:QMAKE_CFLAGS_THREAD += -pthread
macx:QMAKE_LFLAGS_THREAD += -pthread
macx:QMAKE_CXXFLAGS_THREAD += -pthread
Expand Down
32 changes: 0 additions & 32 deletions contrib/homebrew/bitcoin.qt.pro.patch

This file was deleted.

48 changes: 0 additions & 48 deletions contrib/homebrew/makefile.osx.patch

This file was deleted.

0 comments on commit 0cccd2c

Please sign in to comment.