From fcc6d2f62172eb6aa547b76653328522a0cc35c5 Mon Sep 17 00:00:00 2001 From: Gav Wood Date: Mon, 1 Jun 2015 12:38:25 +0800 Subject: [PATCH] Possible MSVC workaround. --- libethereum/BlockQueue.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libethereum/BlockQueue.cpp b/libethereum/BlockQueue.cpp index 4a7a61a31..c2bd35afc 100644 --- a/libethereum/BlockQueue.cpp +++ b/libethereum/BlockQueue.cpp @@ -102,6 +102,7 @@ void BlockQueue::verifierBody() RLP r(&res.second); for (auto const& uncle: r[2]) + { try { BlockInfo().populateFromHeader(RLP(uncle.data()), CheckEverything); @@ -125,6 +126,7 @@ void BlockQueue::verifierBody() badBlockHeader(uncle.data(), _e.what()); throw; } + } } catch (...) {