Skip to content

Commit

Permalink
Bump protocol version
Browse files Browse the repository at this point in the history
  • Loading branch information
pwojcikdev committed Nov 8, 2023
1 parent 067bf69 commit 941cd58
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nano/lib/config.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
Expand Down

0 comments on commit 941cd58

Please # to comment.