Skip to content

Commit

Permalink
Squash last bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
oxmah authored Jun 9, 2018
1 parent 73cc814 commit 65ab61e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,33 +30,33 @@ static const int DATABASE_VERSION = 70509;
// network protocol versioning
//

static const int PROTOCOL_VERSION = 30006;
static const int PROTOCOL_VERSION = 30007;

// intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;

// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 30003;
static const int MIN_PEER_PROTO_VERSION_2 = 30006;
static const int MIN_PEER_PROTO_VERSION_2 = 30007;

// minimum peer version accepted by DarkSendPool
static const int MIN_POOL_PEER_PROTO_VERSION = 30006;
static const int MIN_POOL_PEER_PROTO_VERSION = 30007;

static const int MIN_INSTANTX_PROTO_VERSION = 30006;
static const int MIN_INSTANTX_PROTO_VERSION = 30007;

//! minimum peer version that can receive masternode payments
// V1 - Last protocol version before update
// V2 - Newest protocol version
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 30003;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 30006;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 30007;

// nTime field added to CAddress, starting with this version;
// if possible, avoid requesting addresses nodes older than this
static const int CADDR_TIME_VERSION = 10000;

// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 30000;
static const int NOBLKS_VERSION_END = 30005;
static const int NOBLKS_VERSION_END = 30006;

// BIP 0031, pong message, is enabled for all versions AFTER this one
static const int BIP0031_VERSION = 10000;
Expand Down

0 comments on commit 65ab61e

Please sign in to comment.