From 165cc91fbb7dc78c27b634c216a108b64205558b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Wo=CC=81jcik?= <3044353+pwojcikdev@users.noreply.github.com> Date: Wed, 8 Nov 2023 17:57:20 +0100 Subject: [PATCH] Bump protocol version --- nano/lib/config.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nano/lib/config.hpp b/nano/lib/config.hpp index fd7eff2603..db8ef89752 100644 --- a/nano/lib/config.hpp +++ b/nano/lib/config.hpp @@ -372,10 +372,12 @@ class network_constants /** Initial value is ACTIVE_NETWORK compile flag, but can be overridden by a CLI flag */ static nano::networks active_network; + /** Current protocol version */ - uint8_t const protocol_version = 0x13; + uint8_t const protocol_version = 0x14; /** Minimum accepted protocol version */ uint8_t const protocol_version_min = 0x12; + /** Minimum accepted protocol version used when bootstrapping */ uint8_t const bootstrap_protocol_version_min = 0x13; };