From ae0b956d82e72c819409e8e1563965f8a480d0e1 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Thu, 5 Feb 2015 11:11:50 -0700 Subject: [PATCH] protocol bump --- src/darksend.h | 2 +- src/init.cpp | 2 +- src/instantx.h | 2 +- src/version.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/darksend.h b/src/darksend.h index 8f45bb82c..1b4a2e68c 100644 --- a/src/darksend.h +++ b/src/darksend.h @@ -222,7 +222,7 @@ class CDarksendSession class CDarkSendPool { public: - static const int MIN_PEER_PROTO_VERSION = 70059; + static const int MIN_PEER_PROTO_VERSION = 70060; // clients entries std::vector myEntries; diff --git a/src/init.cpp b/src/init.cpp index 85e5c3e75..3628ce37a 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -702,7 +702,7 @@ bool AppInit2(boost::thread_group& threadGroup) } //ignore masternodes below protocol version - nMasternodeMinProtocol = GetArg("-masternodeminprotocol", 0); + nMasternodeMinProtocol = GetArg("-masternodeminprotocol", 70051); int64_t nStart; diff --git a/src/instantx.h b/src/instantx.h index 87072db45..4b1500e6e 100644 --- a/src/instantx.h +++ b/src/instantx.h @@ -23,7 +23,7 @@ class CConsensusVote; class CTransaction; class CTransactionLock; -static const int MIN_INSTANTX_PROTO_VERSION = 70059; +static const int MIN_INSTANTX_PROTO_VERSION = 70060; extern map mapTxLockReq; extern map mapTxLocks; diff --git a/src/version.h b/src/version.h index 61dda21a2..7a7b2e40f 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 = 70059; +static const int PROTOCOL_VERSION = 70060; // intial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;