Skip to content

Commit

Permalink
Merge pull request #7 from ionomy/adammatlack-patch-1-proto-update
Browse files Browse the repository at this point in the history
Update version.h
  • Loading branch information
ionstaff committed Feb 12, 2017
2 parents 54ffb53 + 4e94d10 commit 8c2aa15
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,34 +30,34 @@ static const int DATABASE_VERSION = 70510;
// network protocol versioning
//

static const int PROTOCOL_VERSION = 95500;
static const int PROTOCOL_VERSION = 95600;

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

// disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 95001;
static const int MIN_PEER_PROTO_VERSION = 95050;

// minimum peer version accepted by DarkSendPool
static const int MIN_POOL_PEER_PROTO_VERSION = 95001;
static const int MIN_POOL_PEER_PROTO_VERSION = 95050;

static const int MIN_MN_PROTO_VERSION = 95001;
static const int MIN_MN_PROTO_VERSION = 95050;

static const int MIN_INSTANTX_PROTO_VERSION = 95001;
static const int MIN_INSTANTX_PROTO_VERSION = 95050;

//! 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 = 95001;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 95002;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_1 = 95050;
static const int MIN_MASTERNODE_PAYMENT_PROTO_VERSION_2 = 95050;

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

// only request blocks from nodes outside this range of versions
static const int NOBLKS_VERSION_START = 0;
static const int NOBLKS_VERSION_END = 90000; // 95400
static const int NOBLKS_VERSION_END = 95050;

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

0 comments on commit 8c2aa15

Please sign in to comment.