mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-27 05:13:25 +01:00
Merge pull request #632
2cf8b32
wallet: guard against exception in process_blocks (moneromooo-monero)
This commit is contained in:
commit
58f890652e
@ -753,7 +753,15 @@ void wallet2::refresh(uint64_t start_height, uint64_t & blocks_fetched, bool& re
|
||||
bool error = false;
|
||||
pull_thread = std::thread([&]{pull_next_blocks(start_height, next_blocks_start_height, short_chain_history, blocks, next_blocks, error);});
|
||||
|
||||
process_blocks(blocks_start_height, blocks, added_blocks);
|
||||
try
|
||||
{
|
||||
process_blocks(blocks_start_height, blocks, added_blocks);
|
||||
}
|
||||
catch (...)
|
||||
{
|
||||
pull_thread.join();
|
||||
throw;
|
||||
}
|
||||
blocks_fetched += added_blocks;
|
||||
pull_thread.join();
|
||||
if(!added_blocks)
|
||||
|
Loading…
Reference in New Issue
Block a user