Merge pull request #8884

eeda4a8 wallet2: do not lose exception in current thread on refresh (Crypto City
 f868768 wallet2: fix missing exceptions from failing wallet refresh (Crypto City)
This commit is contained in:
luigi1111 2023-06-27 11:48:27 -05:00
commit 0a1eaf26f9
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010
1 changed files with 2 additions and 0 deletions

View File

@ -3952,6 +3952,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;
@ -4016,6 +4017,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();