From 44dfb0ef879a54568bbb89b72a20aa4450c7b802 Mon Sep 17 00:00:00 2001 From: Vlad Gluhovsky Date: Fri, 24 Jul 2015 17:02:21 +0200 Subject: [PATCH] windows build fixed --- libethereum/BlockChain.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libethereum/BlockChain.cpp b/libethereum/BlockChain.cpp index 0baff8057..4e5386412 100644 --- a/libethereum/BlockChain.cpp +++ b/libethereum/BlockChain.cpp @@ -386,6 +386,7 @@ tuple BlockChain::sync(BlockQueue& _bq, OverlayDB c if (!badBlocks.empty()) badBlocks.push_back(block.verified.info.hash()); else + { do { try { @@ -427,6 +428,7 @@ tuple BlockChain::sync(BlockQueue& _bq, OverlayDB c badBlocks.push_back(block.verified.info.hash()); } } while (false); + } return make_tuple(ImportRoute{dead, fresh, goodTransactions}, _bq.doneDrain(badBlocks), count); }