]> Git Repo - VerusCoin.git/blame - src/version.h
Merge pull request #5164
[VerusCoin.git] / src / version.h
CommitLineData
a20c0d0f
PW
1// Copyright (c) 2012 The Bitcoin developers
2// Distributed under the MIT/X11 software license, see the accompanying
3a25a2b9 3// file COPYING or http://www.opensource.org/licenses/mit-license.php.
093303a8 4
a20c0d0f
PW
5#ifndef BITCOIN_VERSION_H
6#define BITCOIN_VERSION_H
7
b87c0fc4
JG
8//
9// network protocol versioning
10//
11
70352e11 12static const int PROTOCOL_VERSION = 70002;
a20c0d0f 13
ab651b2d 14// initial proto version, to be increased after version/verack negotiation
1ce41892
WT
15static const int INIT_PROTO_VERSION = 209;
16
341735eb
PW
17// In this version, 'getheaders' was introduced.
18static const int GETHEADERS_VERSION = 31800;
19
1ce41892 20// disconnect from peers older than this proto version
341735eb 21static const int MIN_PEER_PROTO_VERSION = GETHEADERS_VERSION;
8b09cd3a
JG
22
23// nTime field added to CAddress, starting with this version;
24// if possible, avoid requesting addresses nodes older than this
25static const int CADDR_TIME_VERSION = 31402;
26
27// only request blocks from nodes outside this range of versions
28static const int NOBLKS_VERSION_START = 32000;
29static const int NOBLKS_VERSION_END = 32400;
30
93e447b6 31// BIP 0031, pong message, is enabled for all versions AFTER this one
b87c0fc4 32static const int BIP0031_VERSION = 60000;
93e447b6 33
ab651b2d 34// "mempool" command, enhanced "getdata" behavior starts with this version
05a85b2b
JG
35static const int MEMPOOL_GD_VERSION = 60002;
36
093303a8 37#endif // BITCOIN_VERSION_H
This page took 0.140554 seconds and 4 git commands to generate.