diff options
author | Thomas Winget <tewinget@gmail.com> | 2014-06-30 06:45:20 -0400 |
---|---|---|
committer | Thomas Winget <tewinget@gmail.com> | 2014-06-30 06:45:20 -0400 |
commit | 55721da1fd2491891a5a7e8ff48daccf28c76abe (patch) | |
tree | 51802c04a0379a29747d4fb660f9643dfc753ab6 /src | |
parent | Merge pull request #54 from zone117x/master (diff) | |
download | monero-55721da1fd2491891a5a7e8ff48daccf28c76abe.tar.xz |
Revert "Do not fall over when refreshing balance fails"
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 7f8bb65fd..a63eb4be7 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; } } } |