From 852b56885d57f3432ef6ba9cb2cf529dc4e12368 Mon Sep 17 00:00:00 2001 From: clemahieu Date: Sat, 1 Jul 2017 01:36:17 -0500 Subject: [PATCH] Waiting longer for a connection to establish. --- rai/node/bootstrap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai/node/bootstrap.cpp b/rai/node/bootstrap.cpp index db07f48a..b154a005 100755 --- a/rai/node/bootstrap.cpp +++ b/rai/node/bootstrap.cpp @@ -191,7 +191,7 @@ void rai::bootstrap_client::run () } }); std::weak_ptr this_w (this_l); - node->alarm.add (std::chrono::system_clock::now () + std::chrono::seconds(5), [this_w] () + node->alarm.add (std::chrono::system_clock::now () + std::chrono::seconds(10), [this_w] () { auto this_l (this_w.lock ()); if (this_l != nullptr)