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; };