aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeli-pro <55572025+peli-pro@users.noreply.github.com>2019-10-17 14:25:36 +0200
committerpeli-pro <55572025+peli-pro@users.noreply.github.com>2019-10-17 14:25:36 +0200
commit212c8dd054918e50abf7b1c8d5676d465a6f09e9 (patch)
tree5520ada737276e80e75b96442419a9d806849dff
parent290582d428fa2399b1c072219c606e2b4f82081c (diff)
downloadmonzero-gui-212c8dd054918e50abf7b1c8d5676d465a6f09e9.tar.gz
monzero-gui-212c8dd054918e50abf7b1c8d5676d465a6f09e9.tar.xz
monzero-gui-212c8dd054918e50abf7b1c8d5676d465a6f09e9.zip
Warning added that balance reflects only incoming transactions for view-only wallets
-rw-r--r--pages/Transfer.qml3
1 files changed, 2 insertions, 1 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml
index 3e93339c..4216a3ce 100644
--- a/pages/Transfer.qml
+++ b/pages/Transfer.qml
@@ -756,7 +756,8 @@ Rectangle {
// Currently opened wallet is not view-only
if(appWindow.viewOnly){
- root.sendButtonWarning = qsTr("Wallet is view-only and sends are not possible.") + translationManager.emptyString;
+ root.sendButtonWarning = qsTr("Wallet is view-only and sends are not possible. Unless key images are imported, " +
+ "the balance reflects only incoming but not outgoing transactions.") + translationManager.emptyString;
return false;
}