mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-26 17:32:33 +00:00
Merge pull request #633
80882ac
wallet: guard against exception in process_blocks (moneromooo-monero)
This commit is contained in:
commit
8d976a0683
1 changed files with 2 additions and 0 deletions
|
@ -780,6 +780,8 @@ void wallet2::refresh(uint64_t start_height, uint64_t & blocks_fetched, bool& re
|
|||
catch (const std::exception&)
|
||||
{
|
||||
blocks_fetched += added_blocks;
|
||||
if (pull_thread.joinable())
|
||||
pull_thread.join();
|
||||
if(try_count < 3)
|
||||
{
|
||||
LOG_PRINT_L1("Another try pull_blocks (try_count=" << try_count << ")...");
|
||||
|
|
Loading…
Reference in a new issue