From 4d2b41f41dc1916a1f6a63ee75c4b46cf7410d1d Mon Sep 17 00:00:00 2001 From: marta-lokhova Date: Mon, 29 Jan 2024 13:09:17 -0800 Subject: [PATCH] Bump FIRST_VERSION_REQUIRED_FOR_PROTOCOL_20 --- src/main/Config.cpp | 2 +- src/overlay/Peer.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/Config.cpp b/src/main/Config.cpp index cac5e4f5e8..e87041c485 100644 --- a/src/main/Config.cpp +++ b/src/main/Config.cpp @@ -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; diff --git a/src/overlay/Peer.h b/src/overlay/Peer.h index 8919b9acf7..1e2c2bbeb2 100644 --- a/src/overlay/Peer.h +++ b/src/overlay/Peer.h @@ -74,7 +74,7 @@ class Peer : public std::enable_shared_from_this, 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.