protocol bump

This commit is contained in:
Evan Duffield 2015-02-05 11:11:50 -07:00
parent 598a9586b5
commit ae0b956d82
4 changed files with 4 additions and 4 deletions

View File

@ -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<CDarkSendEntry> myEntries;

View File

@ -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;

View File

@ -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<uint256, CTransaction> mapTxLockReq;
extern map<uint256, CTransactionLock> mapTxLocks;

View File

@ -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;