diff options
| author | Matthew Little <zone117x@gmail.com> | 2014-06-29 18:04:29 -0600 |
|---|---|---|
| committer | Matthew Little <zone117x@gmail.com> | 2014-06-29 18:04:29 -0600 |
| commit | b87577f4441fd53d513ecf64a905104db3db20e2 (patch) | |
| tree | 35475d42787a1a4d6c706f122095b900f739f618 | |
| parent | eba62452c007623bf559e836cbe7e9f2f66a35e9 (diff) | |
| download | monzero-core-b87577f4441fd53d513ecf64a905104db3db20e2.tar.gz monzero-core-b87577f4441fd53d513ecf64a905104db3db20e2.tar.xz monzero-core-b87577f4441fd53d513ecf64a905104db3db20e2.zip | |
Do not fall over when refreshing balance fails
| -rw-r--r-- | src/wallet/wallet2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index a63eb4be7..7f8bb65fd 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; } } } |
