From c88c6a9b63d0bf69d3353eb24e48b9fcb1fe1c87 Mon Sep 17 00:00:00 2001 From: orignal Date: Fri, 20 Feb 2015 15:15:23 -0500 Subject: [PATCH] include https hosts to reseeder's list --- Reseed.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reseed.cpp b/Reseed.cpp index 540d0ebc..6d789509 100644 --- a/Reseed.cpp +++ b/Reseed.cpp @@ -123,7 +123,7 @@ namespace data auto ind = rnd.GenerateWord32 (0, httpReseedHostList.size() - 1 + httpsReseedHostList.size () - 1); std::string reseedHost = (ind < httpReseedHostList.size()) ? httpReseedHostList[ind] : httpsReseedHostList[ind - httpReseedHostList.size()]; - return ReseedFromSU3 (reseedHost); + return ReseedFromSU3 (reseedHost, ind >= httpReseedHostList.size()); } int Reseeder::ReseedFromSU3 (const std::string& host, bool https)