diff options
| author | xiphon <xiphon@protonmail.com> | 2019-05-03 18:38:06 +0000 |
|---|---|---|
| committer | xiphon <xiphon@protonmail.com> | 2019-05-03 18:43:11 +0000 |
| commit | ceed212e63209c5802a28c3ec86af8fa1c330800 (patch) | |
| tree | 0bb6cd16d0af08f62dda9985dc82ad009cb9f401 | |
| parent | 1f2f08190ac9e80c954f08f49cfd6f3c46e528a5 (diff) | |
| download | monzero-gui-ceed212e63209c5802a28c3ec86af8fa1c330800.tar.gz monzero-gui-ceed212e63209c5802a28c3ec86af8fa1c330800.tar.xz monzero-gui-ceed212e63209c5802a28c3ec86af8fa1c330800.zip | |
wallet: fix deadlock, omit invoking 'refresh' from callback
Co-authored-by: Dusan Klinec <dusan.klinec@gmail.com>
| -rw-r--r-- | main.qml | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -722,7 +722,6 @@ ApplicationWindow { function onWalletMoneyReceived(txId, amount) { // refresh transaction history here - currentWallet.refresh() console.log("Confirmed money found") // history refresh is handled by walletUpdated currentWallet.history.refresh(currentWallet.currentSubaddressAccount) // this will refresh model @@ -744,7 +743,6 @@ ApplicationWindow { function onWalletMoneySent(txId, amount) { // refresh transaction history here console.log("monero sent found") - currentWallet.refresh() currentWallet.history.refresh(currentWallet.currentSubaddressAccount); // this will refresh model if(middlePanel.state == "History") |
