What's the purpose of that bot activity?
It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
sv3:/usr/local/src # git clone https://github.com/evan82/darkcoin.git darkcoine2
Cloning into 'darkcoine2'...
remote: Counting objects: 32850, done.
remote: Compressing objects: 100% (8782/8782), done.
remote: Total 32850 (delta 23975), reused 32711 (delta 23843)
Receiving objects: 100% (32850/32850), 31.24 MiB | 5.82 MiB/s, done.
Resolving deltas: 100% (23975/23975), done.
sv3:/usr/local/src # cd darkcoine2/
sv3:/usr/local/src/darkcoine2 # git describe --always --dirty
v0.8.9.2-1-g07c9905
sv3:/usr/local/src/darkcoine2 # tail -5 .git/packed-refs
^a553548c029b525a73f8cb4876bd137ff3f0b93c
94c41f7594aca2a6afa54c7f7d10fc49900eaada refs/tags/v0.8.9.2
^bd593e75f84d435319b5781adfe1ac4d94ba7a2d
247ba2708795aca153a0e62ca6ffdb005cbda0e7 refs/tags/v0.9.0.0
^50189ca2a010728bc559a4f46568267bf13b7ff7
sv3:/usr/local/src # git clone https://github.com/evan82/darkcoin.git darkcoine2
Cloning into 'darkcoine2'...
remote: Counting objects: 32850, done.
remote: Compressing objects: 100% (8782/8782), done.
remote: Total 32850 (delta 23975), reused 32711 (delta 23843)
Receiving objects: 100% (32850/32850), 31.24 MiB | 5.82 MiB/s, done.
Resolving deltas: 100% (23975/23975), done.
sv3:/usr/local/src # cd darkcoine2/
sv3:/usr/local/src/darkcoine2 # git describe --always --dirty
v0.8.9.2-1-g07c9905
sv3:/usr/local/src/darkcoine2 # tail -5 .git/packed-refs
^a553548c029b525a73f8cb4876bd137ff3f0b93c
94c41f7594aca2a6afa54c7f7d10fc49900eaada refs/tags/v0.8.9.2
^bd593e75f84d435319b5781adfe1ac4d94ba7a2d
247ba2708795aca153a0e62ca6ffdb005cbda0e7 refs/tags/v0.9.0.0
^50189ca2a010728bc559a4f46568267bf13b7ff7
sv3:/usr/local/src/darkcoine2 # git show
commit 07c99052edc617975cdcbe4482e02c52e2d1fbf5
Author: Evan
Date: Fri Mar 14 19:56:19 2014 -0700
Added DarkGravityWave (DGW), Hard fork at 34140!
diff --git a/README.md b/README.md
index 59c584e..2ae1afb 100644
--- a/README.md
+++ b/README.md
@@ -11,14 +11,12 @@ What is DarkCoin?
DarkCoin is a lite version of Bitcoin using X11 as a proof-of-work algorithm.
- Super secure hashing algorithm: 11 rounds of scientific hashing functions (blake, bmw, groestl, jh, keccak, skein, luffa, cubehash, shavite, simd, echo)
- - Block reward is controlled by moore's law: (11111 / (((Difficulty+51)/6) ^ 2))
- - CPU only mining
+ - Block reward is controlled by moore's law: 2222222/(((Difficulty+2600)/9)^2)
+ - GPU/CPU only mining
- Block generation: 2.5 minutes
- - Difficulty Retargets every 576 blocks
- - 84 Million Coins Max
- - Block reward halving every 2 years
- - Encrypted transaction network: Work In Progress
- - Anonymous blockchain using coinjoin technology: Work In Progress
+ - Difficulty Retargets every block using Dark Gravity Wave
+ - Est. ~7M Coins in 2015, ~13M in 2020, ~23M in 2030
+ - Anonymous blockchain using DarkSend technology (Based on CoinJoin): Beta Testing
For more information, as well as an immediately useable, binary version of
the DarkCoin client sofware, see http://www.darkcoin.io.
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro
index 4424b83..5921061 100644
--- a/bitcoin-qt.pro
+++ b/bitcoin-qt.pro
@@ -1,7 +1,7 @@
TEMPLATE = app
TARGET = darkcoin-qt
macx:TARGET = "DarkCoin-Qt"
-VERSION = 0.8.9.0
+VERSION = 0.9.0.0
INCLUDEPATH += src src/json src/qt
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
diff --git a/share/setup.nsi b/share/setup.nsi
index 479f2dc..710693a 100644
--- a/share/setup.nsi
+++ b/share/setup.nsi
@@ -5,8 +5,8 @@ SetCompressor /SOLID lzma
# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
-!define VERSION 0.8.9.0
!define COMPANY "DarkCoin project"
+!define VERSION 0.9.0.0
!define URL http://www.darkcoin.io/
sv3:/usr/local/src/darkcoin # cat src/clientversion.h
#ifndef CLIENTVERSION_H
#define CLIENTVERSION_H
//
// client versioning and copyright year
//
// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 9
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_BUILD 0
// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true
// Copyright year (2009-this)
// Todo: update this when changing our copyright comments in the source
#define COPYRIGHT_YEAR 2013
// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
#define STRINGIZE(X) DO_STRINGIZE(X)
#define DO_STRINGIZE(X) #X
#endif // CLIENTVERSION_H
Mac-mini:darkcoin chaeplin$ grep DarkGravityWave src/main.cpp
unsigned int static DarkGravityWave(const CBlockIndex* pindexLast, const CBlockHeader *pblock) {
else if (DiffMode == 3) { return DarkGravityWave(pindexLast, pblock); }
return DarkGravityWave(pindexLast, pblock);
sv3:~ # /usr/bin/darkcoind --help
DarkCoin version v0.8.9.2-1-g07c9905-beta
sv3:~ # grep DarkGravityWave /usr/local/src/darkcoin/src/main.cpp
unsigned int static DarkGravityWave(const CBlockIndex* pindexLast, const CBlockHeader *pblock) {
else if (DiffMode == 3) { return DarkGravityWave(pindexLast, pblock); }
return DarkGravityWave(pindexLast, pblock);
sv3:~ # cd /usr/local/src/darkcoin
sv3:/usr/local/src/darkcoin # git pull
Already up-to-date.
sv3:/usr/local/src/darkcoin #