From 820e660e10d40c33db742242d93ed6002b76e78c Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Tue, 17 Mar 2015 04:42:32 -0700 Subject: [PATCH] version bump / protocol bump --- configure.ac | 2 +- src/clientversion.h | 2 +- src/core.h | 2 +- src/masternode-pos.h | 6 +++--- src/version.h | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index b43bdb87a..a9d2aaa0c 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 0) define(_CLIENT_VERSION_MINOR, 11) define(_CLIENT_VERSION_REVISION, 2) -define(_CLIENT_VERSION_BUILD, 4) +define(_CLIENT_VERSION_BUILD, 5) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2015) AC_INIT([Darkcoin Core],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[info@darkcoin.io],[darkcoin]) diff --git a/src/clientversion.h b/src/clientversion.h index d8efe956d..3971decb0 100644 --- a/src/clientversion.h +++ b/src/clientversion.h @@ -12,7 +12,7 @@ #define CLIENT_VERSION_MAJOR 0 #define CLIENT_VERSION_MINOR 11 #define CLIENT_VERSION_REVISION 2 -#define CLIENT_VERSION_BUILD 4 +#define CLIENT_VERSION_BUILD 5 diff --git a/src/core.h b/src/core.h index 6d6ebfd2f..4868afc66 100644 --- a/src/core.h +++ b/src/core.h @@ -43,7 +43,7 @@ static const int64_t DARKSEND_POOL_MAX = (999.99*COIN); #define MASTERNODE_EXPIRATION_SECONDS (65*60) #define MASTERNODE_REMOVAL_SECONDS (70*60) -static const int MIN_POOL_PEER_PROTO_VERSION = 70070; // minimum peer version accepted by DarkSendPool +static const int MIN_POOL_PEER_PROTO_VERSION = 70071; // minimum peer version accepted by DarkSendPool class CTransaction; diff --git a/src/masternode-pos.h b/src/masternode-pos.h index 0142a906c..39533bd14 100644 --- a/src/masternode-pos.h +++ b/src/masternode-pos.h @@ -25,12 +25,12 @@ class CMasternodeScanningError; extern map mapMasternodeScanningErrors; extern CMasternodeScanning mnscan; -static const int MIN_MASTERNODE_POS_PROTO_VERSION = 70066; +static const int MIN_MASTERNODE_POS_PROTO_VERSION = 70071; /* 1% of the network is scanned every 2.5 minutes, making a full - round of scanning take about 4.16 hours. We're targeting about - a day of proof-of-service errors for complete removal from the + round of scanning take about 4.16 hours. We're targeting about + a day of proof-of-service errors for complete removal from the masternode system. */ static const int MASTERNODE_SCANNING_ERROR_THESHOLD = 6; diff --git a/src/version.h b/src/version.h index 4c6f90b68..c4b23e1f1 100644 --- a/src/version.h +++ b/src/version.h @@ -27,7 +27,7 @@ extern const std::string CLIENT_DATE; // network protocol versioning // -static const int PROTOCOL_VERSION = 70070; +static const int PROTOCOL_VERSION = 70071; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;