From 4cd6652825972a32f18881a88e01681830fa0577 Mon Sep 17 00:00:00 2001 From: j-berman Date: Thu, 20 Oct 2022 16:23:10 -0500 Subject: [PATCH] Update balance after calling scan_tx --- pages/settings/SettingsWallet.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/settings/SettingsWallet.qml b/pages/settings/SettingsWallet.qml index 0c1e80ea..604e2db8 100644 --- a/pages/settings/SettingsWallet.qml +++ b/pages/settings/SettingsWallet.qml @@ -138,6 +138,7 @@ Rectangle { inputDialog.onAcceptedCallback = function() { var txid = inputDialog.inputText.trim(); if (currentWallet.scanTransactions([txid])) { + updateBalance(); appWindow.showStatusMessage(qsTr("Transaction successfully scanned"), 3); } else { appWindow.showStatusMessage(qsTr("Failed to scan transaction") + ": " + currentWallet.errorString, 5);