update version to 7.2.0 -- protocol version

This commit is contained in:
Aaron Molitor 2022-04-08 23:03:42 -05:00 committed by Aaron Molitor
parent 63a2e317fb
commit 6b2d0e5d6b
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ constexpr uint64_t currentProtocolVersionValue = 0x0FDB00B072000000LL;
// The first protocol version that cannot be downgraded from. Ordinarily, this will be two release versions larger
// than the current version, meaning that we only support downgrades between consecutive release versions.
constexpr uint64_t minInvalidProtocolVersionValue = 0x0FDB00B073000000LL;
constexpr uint64_t minInvalidProtocolVersionValue = 0x0FDB00B074000000LL;
#define PROTOCOL_VERSION_FEATURE(v, x) \
static_assert((v & 0xF0FFFFLL) == 0 || v < 0x0FDB00B071000000LL, "Unexpected feature protocol version"); \