From eeda4a84978e5b640c56013d82415836030c17df Mon Sep 17 00:00:00 2001 From: Crypto City Date: Tue, 30 May 2023 17:07:20 +0000 Subject: [PATCH] wallet2: do not lose exception in current thread on refresh --- src/wallet/wallet2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 338d34b50..50030ec57 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3712,6 +3712,7 @@ void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blo catch (const std::exception &e) { MERROR("Error parsing blocks: " << e.what()); + exception = std::current_exception(); error = true; } blocks_fetched += added_blocks;