From fbaac755500497ceac9316aed8bee642521cdb80 Mon Sep 17 00:00:00 2001 From: clemahieu Date: Wed, 9 May 2018 18:34:45 +0100 Subject: [PATCH] Bumping protocol version on master since we have a V13 stabilization branch. --- CMakeLists.txt | 2 +- rai/common.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6fccc20a..8e14445f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required (VERSION 2.8.11) project (rai) -set (CPACK_PACKAGE_VERSION_MAJOR "13") +set (CPACK_PACKAGE_VERSION_MAJOR "14") set (CPACK_PACKAGE_VERSION_MINOR "0") set (CPACK_PACKAGE_VERSION_PATCH "0") if (DEFINED GIT_COMMIT) diff --git a/rai/common.hpp b/rai/common.hpp index 6b119dde..ccd77d50 100644 --- a/rai/common.hpp +++ b/rai/common.hpp @@ -23,7 +23,7 @@ struct hash } namespace rai { -const uint8_t protocol_version = 0x09; +const uint8_t protocol_version = 0x0a; const uint8_t protocol_version_min = 0x07; class block_store;