From 55721da1fd2491891a5a7e8ff48daccf28c76abe Mon Sep 17 00:00:00 2001 From: Thomas Winget Date: Mon, 30 Jun 2014 06:45:20 -0400 Subject: [PATCH] Revert "Do not fall over when refreshing balance fails" --- src/wallet/wallet2.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 7f8bb65f..a63eb4be 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -309,8 +309,7 @@ void wallet2::refresh(size_t & blocks_fetched, bool& received_money) else { LOG_ERROR("pull_blocks failed, try_count=" << try_count); - //throw; - return; + throw; } } }