1
mirror of https://github.com/monero-project/monero-gui synced 2024-09-24 15:59:00 +02:00

libwalletqt: refresh once on wallet opening

Co-authored-by: tobtoht <thotbot@protonmail.com>
This commit is contained in:
selsta 2022-08-06 21:58:21 +02:00
parent 064c145aa8
commit fc261502d1
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E
2 changed files with 5 additions and 1 deletions

View File

@ -545,6 +545,7 @@ bool Wallet::refresh(bool historyAndSubaddresses /* = true */)
void Wallet::startRefresh()
{
m_refreshEnabled = true;
m_refreshNow = true;
}
void Wallet::pauseRefresh()
@ -1142,6 +1143,7 @@ Wallet::Wallet(Monero::Wallet *w, QObject *parent)
, m_subaddressModel(nullptr)
, m_subaddressAccount(new SubaddressAccount(m_walletImpl->subaddressAccount(), this))
, m_subaddressAccountModel(nullptr)
, m_refreshNow(false)
, m_refreshEnabled(false)
, m_refreshing(false)
, m_scheduler(this)
@ -1195,10 +1197,11 @@ void Wallet::startRefreshThread()
{
const auto now = std::chrono::steady_clock::now();
const auto elapsed = now - last;
if (elapsed >= refreshInterval)
if (elapsed >= refreshInterval || m_refreshNow)
{
refresh(false);
last = std::chrono::steady_clock::now();
m_refreshNow = false;
}
}

View File

@ -473,6 +473,7 @@ private:
QString m_daemonPassword;
QString m_proxyAddress;
mutable QMutex m_proxyMutex;
std::atomic<bool> m_refreshNow;
std::atomic<bool> m_refreshEnabled;
std::atomic<bool> m_refreshing;
WalletListenerImpl *m_walletListener;