Update Versions and Protocol Version

This commit is contained in:
James 2019-09-11 11:27:12 +02:00
parent c8dc53fe24
commit dbf1ee947f
No known key found for this signature in database
GPG Key ID: 5B4C4A3263387993
7 changed files with 10 additions and 10 deletions

View File

@ -1,4 +1,4 @@
Copyright (c) 2017-2018 The Bitcoin Private developers
Copyright (c) 2017-2019 The Bitcoin Private developers
Copyright (c) 2016-2017 The Zclassic developers
Copyright (c) 2016-2017 The Zcash developers
Copyright (c) 2009-2017 The Bitcoin Core developers

View File

@ -1,7 +1,7 @@
Bitcoin Private
----------------
**Bitcoin Private v1.0.13**
**Bitcoin Private v1.0.14**
P2P Port: 7933

View File

@ -2,7 +2,7 @@ dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 1)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_REVISION, 13)
define(_CLIENT_VERSION_REVISION, 14)
define(_CLIENT_VERSION_BUILD, 50)
define(_ZC_BUILD_VAL, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, m4_incr(_CLIENT_VERSION_BUILD), m4_eval(_CLIENT_VERSION_BUILD < 50), 1, m4_eval(_CLIENT_VERSION_BUILD - 24), m4_eval(_CLIENT_VERSION_BUILD == 50), 1, , m4_eval(_CLIENT_VERSION_BUILD - 50)))
define(_CLIENT_VERSION_SUFFIX, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, _CLIENT_VERSION_REVISION-beta$1, m4_eval(_CLIENT_VERSION_BUILD < 50), 1, _CLIENT_VERSION_REVISION-rc$1, m4_eval(_CLIENT_VERSION_BUILD == 50), 1, _CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION-$1)))

View File

@ -1,5 +1,5 @@
---
name: "BTCP-1.0.13"
name: "BTCP-1.0.14"
enable_cache: true
distro: "debian"
suites:

View File

@ -1,7 +1,7 @@
// Copyright (c) 2009-2014 The Bitcoin Core developers
// Copyright (c) 2016-2017 The Zcash developers
// Copyright (c) 2016-2017 The Zclassic developers
// Copyright (c) 2017-2018 The Bitcoin Private developers
// Copyright (c) 2017-2019 The Bitcoin Private developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
@ -19,7 +19,7 @@
//! These need to be macros, as clientversion.cpp's and bitcoin*-res.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 1
#define CLIENT_VERSION_MINOR 0
#define CLIENT_VERSION_REVISION 13
#define CLIENT_VERSION_REVISION 14
#define CLIENT_VERSION_BUILD 50
//! Set to true for release, false for prerelease or test build

View File

@ -78,8 +78,8 @@ void ThreadSendAlert()
// These versions are protocol versions
// 170002 : 1.0.0
alert.nMinVer = 170002;
alert.nMaxVer = 180004;
alert.nMinVer = 170005;
alert.nMaxVer = 180005;
//
// main.cpp:

View File

@ -9,7 +9,7 @@
* network protocol versioning
*/
static const int PROTOCOL_VERSION = 180004;
static const int PROTOCOL_VERSION = 180005;
//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
@ -18,7 +18,7 @@ static const int INIT_PROTO_VERSION = 209;
static const int GETHEADERS_VERSION = 31800;
//! disconnect from peers older than this proto version
static const int MIN_PEER_PROTO_VERSION = 180003;
static const int MIN_PEER_PROTO_VERSION = 180004;
//! nTime field added to CAddress, starting with this version;
//! if possible, avoid requesting addresses nodes older than this