diff --git a/configure.ac b/configure.ac index 9eefbc29..5207ead2 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.60]) define(_CLIENT_VERSION_MAJOR, 1) define(_CLIENT_VERSION_MINOR, 9) define(_CLIENT_VERSION_REVISION, 9) -define(_CLIENT_VERSION_BUILD, 4) +define(_CLIENT_VERSION_BUILD, 5) define(_CLIENT_VERSION_IS_RELEASE, true) define(_COPYRIGHT_YEAR, 2020) define(_COPYRIGHT_HOLDERS,[The %s developers]) diff --git a/src/activemasternode.cpp b/src/activemasternode.cpp index c314a213..f8d80f24 100644 --- a/src/activemasternode.cpp +++ b/src/activemasternode.cpp @@ -217,12 +217,14 @@ void CActiveMasternode::ManageStateRemote() mnodeman.CheckMasternode(pubKeyMasternode, true); masternode_info_t infoMn; if(mnodeman.GetMasternodeInfo(pubKeyMasternode, infoMn)) { + /* if(infoMn.nProtocolVersion != PROTOCOL_VERSION) { nState = ACTIVE_MASTERNODE_NOT_CAPABLE; strNotCapableReason = "Invalid protocol version"; LogPrintf("CActiveMasternode::ManageStateRemote -- %s: %s\n", GetStateString(), strNotCapableReason); return; } + */ if(service != infoMn.addr) { nState = ACTIVE_MASTERNODE_NOT_CAPABLE; strNotCapableReason = "Broadcasted IP doesn't match our external address. Make sure you issued a new broadcast if IP of this masternode changed recently."; diff --git a/src/governance-object.h b/src/governance-object.h index e8ea4714..a345d9ab 100644 --- a/src/governance-object.h +++ b/src/governance-object.h @@ -25,8 +25,8 @@ class CGovernanceObject; class CGovernanceVote; static const int MAX_GOVERNANCE_OBJECT_DATA_SIZE = 16 * 1024; -static const int MIN_GOVERNANCE_PEER_PROTO_VERSION = 70006; -static const int GOVERNANCE_FILTER_PROTO_VERSION = 70006; +static const int MIN_GOVERNANCE_PEER_PROTO_VERSION = 70005; +static const int GOVERNANCE_FILTER_PROTO_VERSION = 70005; static const double GOVERNANCE_FILTER_FP_RATE = 0.001;