update history when new block is found

This commit is contained in:
Jaquee 2017-03-05 00:05:31 +01:00
parent 2e3350c060
commit bd959085f2
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39
1 changed files with 2 additions and 2 deletions

View File

@ -334,8 +334,8 @@ ApplicationWindow {
console.log(">>> wallet updated")
middlePanel.unlockedBalanceText = leftPanel.unlockedBalanceText = walletManager.displayAmount(currentWallet.unlockedBalance);
middlePanel.balanceText = leftPanel.balanceText = walletManager.displayAmount(currentWallet.balance);
// Update history if new block found since last update and balance is locked.
if(foundNewBlock && currentWallet.history.locked) {
// Update history if new block found since last update
if(foundNewBlock) {
foundNewBlock = false;
console.log("New block found - updating history")
currentWallet.history.refresh()