From 02e882c3d8ef426897850d76e5bbebd5615f634e Mon Sep 17 00:00:00 2001 From: UdjinM6 Date: Sun, 17 Sep 2017 20:43:58 +0300 Subject: [PATCH] bump MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 and PROTOCOL_VERSION to 70208 (#1636) --- src/masternode-payments.h | 2 +- src/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/masternode-payments.h b/src/masternode-payments.h index fdb0829fe..0efa0ebb1 100644 --- a/src/masternode-payments.h +++ b/src/masternode-payments.h @@ -24,7 +24,7 @@ static const int MNPAYMENTS_SIGNATURES_TOTAL = 10; // V1 - Last protocol version before update // V2 - Newest protocol version static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 70206; -static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70206; +static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 70208; extern CCriticalSection cs_vecPayees; extern CCriticalSection cs_mapMasternodeBlocks; diff --git a/src/version.h b/src/version.h index 5506c18f8..5b221da26 100644 --- a/src/version.h +++ b/src/version.h @@ -10,7 +10,7 @@ * network protocol versioning */ -static const int PROTOCOL_VERSION = 70207; +static const int PROTOCOL_VERSION = 70208; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;