Do not fall over when refreshing balance fails

This commit is contained in:
Matthew Little 2014-06-29 18:04:29 -06:00
parent eba62452c0
commit b87577f444

View file

@ -309,7 +309,8 @@ void wallet2::refresh(size_t & blocks_fetched, bool& received_money)
else else
{ {
LOG_ERROR("pull_blocks failed, try_count=" << try_count); LOG_ERROR("pull_blocks failed, try_count=" << try_count);
throw; //throw;
return;
} }
} }
} }