1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-18 05:15:54 +01:00

Revert "main: update balance only when wallet is synced"

This reverts commit 333c9ee311.
This commit is contained in:
selsta 2020-06-24 04:02:27 +02:00
parent 0b2e74cdb5
commit 1c62edeff4
No known key found for this signature in database
GPG Key ID: 2EA0A99A8B07AE5E

View File

@ -416,7 +416,7 @@ ApplicationWindow {
var balance = "?.??";
var balanceU = "?.??";
if(!hideBalanceForced && !persistentSettings.hideBalance && appWindow.walletSynced){
if(!hideBalanceForced && !persistentSettings.hideBalance){
balance = walletManager.displayAmount(currentWallet.balance());
balanceU = walletManager.displayAmount(currentWallet.unlockedBalance());
}