]> Git Repo - VerusCoin.git/blame - src/version.h
Cleanup nonce changes
[VerusCoin.git] / src / version.h
CommitLineData
f914f1a7 1// Copyright (c) 2012-2014 The Bitcoin Core developers
6395ba30 2// Distributed under the MIT 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
6395ba30
MF
8/**
9 * network protocol versioning
10 */
b87c0fc4 11
72b21929 12static const int PROTOCOL_VERSION = 170003;
a20c0d0f 13
6395ba30 14//! initial proto version, to be increased after version/verack negotiation
15a99376
SB
15static const int INIT_PROTO_VERSION = 209;
16
17//! In this version, 'getheaders' was introduced.
18static const int GETHEADERS_VERSION = 31800;
341735eb 19
6395ba30 20//! disconnect from peers older than this proto version
697cc53b 21static const int MIN_PEER_PROTO_VERSION = 170002;
8b09cd3a 22
15a99376
SB
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
15a99376
SB
27//! BIP 0031, pong message, is enabled for all versions AFTER this one
28static const int BIP0031_VERSION = 60000;
29
30//! "mempool" command, enhanced "getdata" behavior starts with this version
31static const int MEMPOOL_GD_VERSION = 60002;
32
093303a8 33#endif // BITCOIN_VERSION_H
This page took 0.21579 seconds and 4 git commands to generate.