diff options
author | Crypto City <cryptocity@example.com> | 2023-05-30 16:51:28 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2023-06-27 11:08:45 +0000 |
commit | 62bb95b25f35fa435a5b53e5267b3ffa00bc52b0 (patch) | |
tree | 069454139b4b7a0fbda8e4f33ed2bb185e2529ed /src | |
parent | Merge pull request #8846 (diff) | |
download | monero-62bb95b25f35fa435a5b53e5267b3ffa00bc52b0.tar.xz |
wallet2: fix missing exceptions from failing wallet refresh
Diffstat (limited to 'src')
-rw-r--r-- | src/wallet/wallet2.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 63e87e52e..a9c53dfa0 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3632,6 +3632,7 @@ void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blo { LOG_PRINT_L1("Another try pull_blocks (try_count=" << try_count << ")..."); first = true; + last = false; start_height = 0; blocks.clear(); parsed_blocks.clear(); |