game: fix game freezing while a newly loaded wallet refreshes

This commit is contained in:
Crypto City 2024-10-07 06:48:59 +00:00
parent ebf1acf3ae
commit 849dbc2670

View File

@ -950,7 +950,24 @@ void GameWalletInternal::refresh()
#ifdef CC_USE_ZMQ_PUBSUB
zmq_notified = false;
#endif
try { wcopy->refresh(wcopy->is_trusted_daemon()); if (connection != GameWallet::connected) wcopy->ensure_cc_account(); connection = GameWallet::connected; daemon_error = ""; }
try
{
while (1)
{
uint64_t blocks_fetched = 0;
bool receive_money = false;
wcopy->refresh(wcopy->is_trusted_daemon(), 0, blocks_fetched, receive_money, true, true, 100);
if (connection != GameWallet::connected)
wcopy->ensure_cc_account();
connection = GameWallet::connected;
daemon_error = "";
if (blocks_fetched == 0)
break;
lock.unlock();
epee::misc_utils::sleep_no_w(10);
lock.lock();
}
}
catch(const std::exception &e) { HandleWalletException(wcopy, std::current_exception()); }
}