diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-03-07 11:03:59 +0000 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-03-07 11:03:59 +0000 |
| commit | 632d347d071adac0aee02837f1616d2abf745eee (patch) | |
| tree | 9d611d5faf192a522210122be7a17a8c0d100421 | |
| parent | 7a79d318a601d775ae848b75f9f35e5875350507 (diff) | |
| parent | bd959085f24ba5f9384d5cac5067392fe391e3a0 (diff) | |
| download | monzero-gui-632d347d071adac0aee02837f1616d2abf745eee.tar.gz monzero-gui-632d347d071adac0aee02837f1616d2abf745eee.tar.xz monzero-gui-632d347d071adac0aee02837f1616d2abf745eee.zip | |
Merge pull request #541
bd95908 update history when new block is found (Jaquee)
| -rw-r--r-- | main.qml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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() |
