Bitcoin ABC  0.29.2
P2P Digital Currency
version.h
Go to the documentation of this file.
1 // Copyright (c) 2012-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_VERSION_H
6 #define BITCOIN_VERSION_H
7 
11 static const int PROTOCOL_VERSION = 70016;
12 
14 static const int INIT_PROTO_VERSION = 209;
15 
17 static const int MIN_PEER_PROTO_VERSION = 31800;
18 
20 static const int BIP0031_VERSION = 60000;
21 
24 static const int NO_BLOOM_VERSION = 70011;
25 
28 static const int SENDHEADERS_VERSION = 70012;
29 
32 static const int FEEFILTER_VERSION = 70013;
33 
35 static const int SHORT_IDS_BLOCKS_VERSION = 70014;
36 
38 static const int INVALID_CB_NO_BAN_VERSION = 70015;
39 
41 static const int PEER_ENTROPY_VERSION = 70016;
42 
43 // Make sure that none of the values above collide with
44 // `ADDRV2_FORMAT`.
45 
46 #endif // BITCOIN_VERSION_H
static const int NO_BLOOM_VERSION
"filter*" commands are disabled without NODE_BLOOM after and including this version
Definition: version.h:24
static const int INIT_PROTO_VERSION
initial proto version, to be increased after version/verack negotiation
Definition: version.h:14
static const int SHORT_IDS_BLOCKS_VERSION
short-id-based block download starts with this version
Definition: version.h:35
static const int SENDHEADERS_VERSION
"sendheaders" command and announcing blocks with headers starts with this version
Definition: version.h:28
static const int PROTOCOL_VERSION
network protocol versioning
Definition: version.h:11
static const int FEEFILTER_VERSION
"feefilter" tells peers to filter invs to you by fee starts with this version
Definition: version.h:32
static const int MIN_PEER_PROTO_VERSION
disconnect from peers older than this proto version
Definition: version.h:17
static const int INVALID_CB_NO_BAN_VERSION
not banning for invalid compact blocks starts with this version
Definition: version.h:38
static const int BIP0031_VERSION
BIP 0031, pong message, is enabled for all versions AFTER this one.
Definition: version.h:20
static const int PEER_ENTROPY_VERSION
send extra peer specific entropy in the version message
Definition: version.h:41