From ddc31b0ff71dd9647329d584ba5b3df0568046c4 Mon Sep 17 00:00:00 2001 From: Evan Duffield Date: Sat, 7 Feb 2015 20:54:36 -0700 Subject: [PATCH] fixed issues with ix signature propagation --- src/instantx.cpp | 2 +- src/version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/instantx.cpp b/src/instantx.cpp index 92542ed8d..85b04669f 100644 --- a/src/instantx.cpp +++ b/src/instantx.cpp @@ -464,7 +464,7 @@ void CleanTransactionLocksList() uint256 CConsensusVote::GetHash() const { - return vinMasternode.prevout.hash + txHash; + return vinMasternode.prevout.hash + vinMasternode.prevout.n + txHash; } diff --git a/src/version.h b/src/version.h index bc5cbb8e1..5bec867b5 100644 --- a/src/version.h +++ b/src/version.h @@ -33,7 +33,7 @@ static const int PROTOCOL_VERSION = 70065; static const int INIT_PROTO_VERSION = 209; // disconnect from peers older than this proto version -static const int MIN_PEER_PROTO_VERSION = 70060; +static const int MIN_PEER_PROTO_VERSION = 70051; // nTime field added to CAddress, starting with this version; // if possible, avoid requesting addresses nodes older than this