mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 11:39:25 +00:00
Wallet: always update sync status if heightsRefresh succeeds
This commit is contained in:
parent
38d509f183
commit
5ca2475732
1 changed files with 5 additions and 7 deletions
|
@ -374,13 +374,11 @@ void Wallet::onHeightsRefreshed(bool success, quint64 daemonHeight, quint64 targ
|
|||
if (success) {
|
||||
quint64 walletHeight = blockChainHeight();
|
||||
|
||||
if (this->connectionStatus() != Wallet::ConnectionStatus_Disconnected) {
|
||||
if (daemonHeight < targetHeight) {
|
||||
emit blockchainSync(daemonHeight, targetHeight);
|
||||
}
|
||||
else {
|
||||
this->syncStatusUpdated(walletHeight, daemonHeight);
|
||||
}
|
||||
if (daemonHeight < targetHeight) {
|
||||
emit blockchainSync(daemonHeight, targetHeight);
|
||||
}
|
||||
else {
|
||||
this->syncStatusUpdated(walletHeight, daemonHeight);
|
||||
}
|
||||
|
||||
if (walletHeight < (daemonHeight - 1)) {
|
||||
|
|
Loading…
Reference in a new issue