aboutsummaryrefslogtreecommitdiff
path: root/pages
diff options
context:
space:
mode:
authorj-berman <justinberman@protonmail.com>2022-10-20 16:23:10 -0500
committerj-berman <justinberman@protonmail.com>2022-10-20 16:23:10 -0500
commit4cd6652825972a32f18881a88e01681830fa0577 (patch)
tree5f94b15b0eaf766d8b06164673c23ba69c1d2e83 /pages
parentaef4a982dc644b3e971a89c8b65dd57d21d5e085 (diff)
downloadmonzero-gui-4cd6652825972a32f18881a88e01681830fa0577.tar.gz
monzero-gui-4cd6652825972a32f18881a88e01681830fa0577.tar.xz
monzero-gui-4cd6652825972a32f18881a88e01681830fa0577.zip
Update balance after calling scan_tx
Diffstat (limited to 'pages')
-rw-r--r--pages/settings/SettingsWallet.qml1
1 files changed, 1 insertions, 0 deletions
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);