Dash Core Source Documentation (0.16.0.1)

Find detailed information regarding the Dash Core source code.

version.h
Go to the documentation of this file.
1 // Copyright (c) 2012-2014 The Bitcoin Core developers
2 // Copyright (c) 2014-2020 The Dash Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef BITCOIN_VERSION_H
7 #define BITCOIN_VERSION_H
8 
14 static const int PROTOCOL_VERSION = 70218;
15 
17 static const int INIT_PROTO_VERSION = 209;
18 
20 static const int GETHEADERS_VERSION = 70077;
21 
23 static const int MIN_PEER_PROTO_VERSION = 70213;
24 
26 static const int MIN_MASTERNODE_PROTO_VERSION = 70218;
27 
30 static const int CADDR_TIME_VERSION = 31402;
31 
33 static const int BIP0031_VERSION = 60000;
34 
36 static const int NO_BLOOM_VERSION = 70201;
37 
39 static const int SENDHEADERS_VERSION = 70201;
40 
42 static const int DIP0001_PROTOCOL_VERSION = 70208;
43 
45 static const int SHORT_IDS_BLOCKS_VERSION = 70209;
46 
48 static const int DMN_PROTO_VERSION = 70213;
49 
51 static const int LLMQS_PROTO_VERSION = 70214;
52 
55 static const int SENDDSQUEUE_PROTO_VERSION = 70214;
56 
58 static const int MNAUTH_NODE_VER_VERSION = 70218;
59 
60 #endif // BITCOIN_VERSION_H
static const int GETHEADERS_VERSION
In this version, 'getheaders' was introduced.
Definition: version.h:20
static const int DMN_PROTO_VERSION
introduction of DIP3/deterministic masternodes
Definition: version.h:48
static const int BIP0031_VERSION
BIP 0031, pong message, is enabled for all versions AFTER this one.
Definition: version.h:33
static const int SENDHEADERS_VERSION
"sendheaders" command and announcing blocks with headers starts with this version ...
Definition: version.h:39
static const int LLMQS_PROTO_VERSION
introduction of LLMQs
Definition: version.h:51
static const int INIT_PROTO_VERSION
initial proto version, to be increased after version/verack negotiation
Definition: version.h:17
static const int SHORT_IDS_BLOCKS_VERSION
short-id-based block download starts with this version
Definition: version.h:45
static const int DIP0001_PROTOCOL_VERSION
DIP0001 was activated in this version.
Definition: version.h:42
static const int MNAUTH_NODE_VER_VERSION
protocol version is included in MNAUTH starting with this version
Definition: version.h:58
static const int MIN_PEER_PROTO_VERSION
disconnect from peers older than this proto version
Definition: version.h:23
static const int PROTOCOL_VERSION
network protocol versioning
Definition: version.h:14
static const int CADDR_TIME_VERSION
nTime field added to CAddress, starting with this version; if possible, avoid requesting addresses no...
Definition: version.h:30
static const int NO_BLOOM_VERSION
"filter*" commands are disabled without NODE_BLOOM after and including this version ...
Definition: version.h:36
static const int MIN_MASTERNODE_PROTO_VERSION
minimum proto version of masternode to accept in DKGs
Definition: version.h:26
static const int SENDDSQUEUE_PROTO_VERSION
introduction of SENDDSQUEUE TODO we can remove this in 0.15.0.0
Definition: version.h:55
Released under the MIT license