From b87577f4441fd53d513ecf64a905104db3db20e2 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Sun, 29 Jun 2014 18:04:29 -0600 Subject: [PATCH] Do not fall over when refreshing balance fails --- src/wallet/wallet2.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index a63eb4be..7f8bb65f 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -309,7 +309,8 @@ void wallet2::refresh(size_t & blocks_fetched, bool& received_money) else { LOG_ERROR("pull_blocks failed, try_count=" << try_count); - throw; + //throw; + return; } } }