Skip to content

Commit

Permalink
Update protocol version defaults.
Browse files Browse the repository at this point in the history
  • Loading branch information
evoskuil committed Mar 13, 2024
1 parent 9d47d10 commit cad6860
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -440,12 +440,12 @@ options_metadata parser::load_settings() THROWS
(
"network.protocol_maximum",
value<uint32_t>(&configured.network.protocol_maximum),
"The maximum network protocol version, defaults to 70013."
"The maximum network protocol version, defaults to 70012."
)
(
"network.protocol_minimum",
value<uint32_t>(&configured.network.protocol_minimum),
"The minimum network protocol version, defaults to 31402."
"The minimum network protocol version, defaults to 31800."
)
(
"network.services_maximum",
Expand Down

0 comments on commit cad6860

Please sign in to comment.