Skip to content

Commit

Permalink
Merge pull request #4170 from marta-lokhova/ban_ov_versions_before_32
Browse files Browse the repository at this point in the history
Bump FIRST_VERSION_REQUIRED_FOR_PROTOCOL_20

Reviewed-by: MonsieurNicolas
  • Loading branch information
latobarita authored Jan 30, 2024
2 parents 23258df + 4d2b41f commit f4b92b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/Config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ Config::Config() : NODE_SEED(SecretKey::random())
LEDGER_PROTOCOL_MIN_VERSION_INTERNAL_ERROR_REPORT = 18;

OVERLAY_PROTOCOL_MIN_VERSION = 27;
OVERLAY_PROTOCOL_VERSION = 31;
OVERLAY_PROTOCOL_VERSION = 32;

VERSION_STR = STELLAR_CORE_VERSION;

Expand Down
2 changes: 1 addition & 1 deletion src/overlay/Peer.h
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class Peer : public std::enable_shared_from_this<Peer>,
std::chrono::seconds(1);
static constexpr uint32_t FIRST_VERSION_SUPPORTING_FLOW_CONTROL_IN_BYTES =
28;
static constexpr uint32_t FIRST_VERSION_REQUIRED_FOR_PROTOCOL_20 = 31;
static constexpr uint32_t FIRST_VERSION_REQUIRED_FOR_PROTOCOL_20 = 32;

// The reporting will be based on the previous
// PEER_METRICS_WINDOW_SIZE-second time window.
Expand Down

0 comments on commit f4b92b7

Please sign in to comment.