Skip to content

Commit

Permalink
Merge pull request #775 from RavenProject/hot_fix_release
Browse files Browse the repository at this point in the history
Update to correct protocol version
  • Loading branch information
blondfrogs committed Apr 16, 2020
2 parents 7066fa0 + fef056c commit 1648093
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,7 +1,7 @@
dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
AC_PREREQ([2.60])
define(_CLIENT_VERSION_MAJOR, 4)
define(_CLIENT_VERSION_MINOR, 0)
define(_CLIENT_VERSION_MINOR, 1)
define(_CLIENT_VERSION_REVISION, 0)
define(_CLIENT_VERSION_BUILD, 0)
define(_CLIENT_VERSION_IS_RELEASE, true)
Expand Down
6 changes: 3 additions & 3 deletions src/version.h
Expand Up @@ -13,12 +13,12 @@
// Update these four values on every release cycle
// These values should match the values in configure.ac
// Used for checking the Ravencoin releases on github
static const std::string SOFTWARE_VERSION = "v4.0.0";
static const std::string SOFTWARE_VERSION = "v4.1.0";
static const int MAIN_SOFTWARE_VERSION = 4;
static const int SECOND_SOFTWARE_VERSION = 0;
static const int SECOND_SOFTWARE_VERSION = 1;
static const int THIRD_SOFTWARE_VERSION = 0;

static const int PROTOCOL_VERSION = 70026;
static const int PROTOCOL_VERSION = 70027;

//! initial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209;
Expand Down

0 comments on commit 1648093

Please sign in to comment.