BIP 0031: pong message
[novacoin.git] / src / version.h
1 // Copyright (c) 2012 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef BITCOIN_VERSION_H
5 #define BITCOIN_VERSION_H
6
7 #include <string>
8
9 extern const std::string CLIENT_NAME;
10 extern const std::string CLIENT_BUILD;
11 extern const std::string CLIENT_DATE;
12 extern const int         CLIENT_VERSION;
13
14 // BIP 0031, pong message, is enabled for all versions AFTER this one
15 const int BIP0031_VERSION = 60000;
16
17 #endif