@@ -151,8 +151,8 @@ Config::Config() : NODE_SEED(SecretKey::random())
151
151
LEDGER_PROTOCOL_VERSION = CURRENT_LEDGER_PROTOCOL_VERSION;
152
152
LEDGER_PROTOCOL_MIN_VERSION_INTERNAL_ERROR_REPORT = 18 ;
153
153
154
- OVERLAY_PROTOCOL_MIN_VERSION = 32 ;
155
- OVERLAY_PROTOCOL_VERSION = 34 ;
154
+ OVERLAY_PROTOCOL_MIN_VERSION = 33 ;
155
+ OVERLAY_PROTOCOL_VERSION = 35 ;
156
156
157
157
VERSION_STR = STELLAR_CORE_VERSION;
158
158
@@ -261,7 +261,6 @@ Config::Config() : NODE_SEED(SecretKey::random())
261
261
PEER_FLOOD_READING_CAPACITY_BYTES = 0 ;
262
262
FLOW_CONTROL_SEND_MORE_BATCH_SIZE_BYTES = 0 ;
263
263
OUTBOUND_TX_QUEUE_BYTE_LIMIT = 1024 * 1024 * 3 ;
264
- ENABLE_FLOW_CONTROL_BYTES = true ;
265
264
266
265
// WORKER_THREADS: setting this too low risks a form of priority inversion
267
266
// where a long-running background task occupies all worker threads and
@@ -1031,10 +1030,6 @@ Config::processConfig(std::shared_ptr<cpptoml::table> t)
1031
1030
FLOW_CONTROL_SEND_MORE_BATCH_SIZE_BYTES =
1032
1031
readInt<uint32_t >(item, 1 );
1033
1032
}
1034
- else if (item.first == " ENABLE_FLOW_CONTROL_BYTES" )
1035
- {
1036
- ENABLE_FLOW_CONTROL_BYTES = readBool (item);
1037
- }
1038
1033
else if (item.first == " OUTBOUND_TX_QUEUE_BYTE_LIMIT" )
1039
1034
{
1040
1035
OUTBOUND_TX_QUEUE_BYTE_LIMIT = readInt<uint32_t >(item, 1 );
0 commit comments