Merge pull request #8917

835896e wallet2: do not lose exception in current thread on refresh (Crypto City)
62bb95b wallet2: fix missing exceptions from failing wallet refresh (Crypto City)
pull/482/head
luigi1111 10 months ago
commit ab826008d6
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -3842,6 +3842,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;
@ -3908,6 +3909,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();

Loading…
Cancel
Save