Skip to content

Commit 72a457e

Browse files
authored
Merge pull request #886 from evoskuil/master
Change handshake_timeout_seconds default to 15s.
2 parents d17d67b + 4969a03 commit 72a457e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

include/bitcoin/node/configuration.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,6 @@ namespace node {
2929
class BCN_API configuration
3030
{
3131
public:
32-
DEFAULT_COPY_MOVE_DESTRUCT(configuration);
33-
3432
configuration(system::chain::selection context,
3533
const server::settings::embedded_pages& explore,
3634
const server::settings::embedded_pages& web) NOEXCEPT;

src/parser.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -631,12 +631,12 @@ options_metadata parser::load_settings() THROWS
631631
(
632632
"network.handshake_timeout_seconds",
633633
value<uint32_t>(&configured.network.handshake_timeout_seconds),
634-
"The time limit to complete the connection handshake, defaults to '30'."
634+
"The time limit to complete the connection handshake, defaults to '15'."
635635
)
636636
(
637637
"network.seeding_timeout_seconds",
638638
value<uint32_t>(&configured.network.seeding_timeout_seconds),
639-
"The time limit for obtaining seed addresses, defaults to '30'."
639+
"The time limit for obtaining seed connections and addresses, defaults to '30'."
640640
)
641641
(
642642
"network.channel_heartbeat_minutes",

0 commit comments

Comments
 (0)