From 38cc84399a08ad978d28fa0409af451f662aaaf0 Mon Sep 17 00:00:00 2001 From: Lee Bousfield Date: Sun, 11 Mar 2018 17:00:44 -0600 Subject: [PATCH] Remove bulk_push_server receive !bootstrap.in_progress check (#723) --- rai/node/bootstrap.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/rai/node/bootstrap.cpp b/rai/node/bootstrap.cpp index 8d885b07..b3f01ba0 100644 --- a/rai/node/bootstrap.cpp +++ b/rai/node/bootstrap.cpp @@ -2060,10 +2060,7 @@ void rai::bulk_push_server::received_block (boost::system::error_code const & ec auto block (rai::deserialize_block (stream)); if (block != nullptr && !rai::work_validate (*block)) { - if (!connection->node->bootstrap_initiator.in_progress ()) - { - connection->node->process_active (std::move (block)); - } + connection->node->process_active (std::move (block)); receive (); } else