mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-02-02 03:06:26 +00:00
Use daemon height if target height = 0
This commit is contained in:
parent
8cdad2fc66
commit
c5206e16e3
1 changed files with 5 additions and 0 deletions
|
@ -192,6 +192,11 @@ quint64 Wallet::daemonBlockChainTargetHeight() const
|
|||
if (m_daemonBlockChainTargetHeight == 0
|
||||
|| m_daemonBlockChainTargetHeightTime.elapsed() / 1000 > m_daemonBlockChainTargetHeightTtl) {
|
||||
m_daemonBlockChainTargetHeight = m_walletImpl->daemonBlockChainTargetHeight();
|
||||
// Target height is set to 0 if daemon is synced.
|
||||
// Use current height from daemon when target height < current height
|
||||
if (m_daemonBlockChainTargetHeight < m_daemonBlockChainHeight){
|
||||
m_daemonBlockChainTargetHeight = m_daemonBlockChainHeight;
|
||||
}
|
||||
m_daemonBlockChainTargetHeightTime.restart();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue