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-05-30 16:57:48 +0000 |
commit | f8687684e336e5c120f7f93a91c36bd51791da20 (patch) | |
tree | 2e1c837ce12e8d84ed0618850bbc629f3dd2a652 | |
parent | Merge pull request #8842 (diff) | |
download | monero-f8687684e336e5c120f7f93a91c36bd51791da20.tar.xz |
wallet2: fix missing exceptions from failing wallet refresh
-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 378fccfab..338d34b50 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3776,6 +3776,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(); |