change client and min protocol version

This commit is contained in:
dan_s
2026-02-22 10:01:59 -06:00
parent 59be9a4cc0
commit e399d62140
3 changed files with 7 additions and 4 deletions

3
.gitignore vendored
View File

@@ -174,3 +174,6 @@ src/RandomX/build-linux/
src/RandomX/build-win64/
src/wallet-utility.exe
src/.build_target
# other
repos/

View File

@@ -30,8 +30,8 @@
// Must be kept in sync with configure.ac , ugh!
#define CLIENT_VERSION_MAJOR 3
#define CLIENT_VERSION_MINOR 10
#define CLIENT_VERSION_REVISION 4
#define CLIENT_VERSION_BUILD 50
#define CLIENT_VERSION_REVISION 5
#define CLIENT_VERSION_BUILD 0
//! Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true

View File

@@ -21,7 +21,7 @@
#define HUSH_VERSION_H
// network protocol versioning
static const int PROTOCOL_VERSION = 1987428;
static const int PROTOCOL_VERSION = 1987430;
//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
//! In this version, 'getheaders' was introduced.
@@ -31,7 +31,7 @@ static const int GETHEADERS_VERSION = 31800;
static const int MIN_HUSH_PEER_PROTO_VERSION = 1987426;
//! disconnect from peers older than this proto version (HACs)
static const int MIN_PEER_PROTO_VERSION = 1987420;
static const int MIN_PEER_PROTO_VERSION = 1987430;
//! nTime field added to CAddress, starting with this version;
//! if possible, avoid requesting addresses nodes older than this