Update min compatible version to 7.1

This commit is contained in:
Bharadwaj V.R 2022-04-13 09:47:12 -07:00
parent 3e50dda79f
commit 3cbe7f7d63
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ constexpr uint64_t currentProtocolVersionValue = 0x0FDB00B072000000LL;
constexpr uint64_t minInvalidProtocolVersionValue = 0x0FDB00B074000000LL;
// The lowest protocol version that can be downgraded to.
constexpr uint64_t minCompatibleProtocolVersionValue = 0x0FDB00B070000000LL;
constexpr uint64_t minCompatibleProtocolVersionValue = 0x0FDB00B071000000LL;
#define PROTOCOL_VERSION_FEATURE(v, x) \
static_assert((v & 0xF0FFFFLL) == 0 || v < 0x0FDB00B071000000LL, "Unexpected feature protocol version"); \