From cad6860a5ea264e3ce4feccce5482e45a4ecd45c Mon Sep 17 00:00:00 2001 From: evoskuil Date: Tue, 12 Mar 2024 23:08:21 -0400 Subject: [PATCH] Update protocol version defaults. --- src/parser.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/parser.cpp b/src/parser.cpp index 320fe561..6bd6c09d 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -54,8 +54,8 @@ parser::parser(system::chain::selection context) NOEXCEPT configured.network.enable_transaction = true; configured.network.host_pool_capacity = 10000; configured.network.outbound_connections = 100; - configured.network.protocol_minimum = level::minimum_protocol; - configured.network.protocol_maximum = level::bip133; + configured.network.protocol_minimum = level::headers_protocol; + configured.network.protocol_maximum = level::bip130; configured.network.services_minimum = service::node_network; configured.network.services_maximum = service::node_network | service::node_witness; @@ -440,12 +440,12 @@ options_metadata parser::load_settings() THROWS ( "network.protocol_maximum", value(&configured.network.protocol_maximum), - "The maximum network protocol version, defaults to 70013." + "The maximum network protocol version, defaults to 70012." ) ( "network.protocol_minimum", value(&configured.network.protocol_minimum), - "The minimum network protocol version, defaults to 31402." + "The minimum network protocol version, defaults to 31800." ) ( "network.services_maximum",