aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2023-09-30 18:34:24 -0400
committerluigi1111 <luigi1111w@gmail.com>2023-09-30 18:34:24 -0400
commit588b8435b7ab32479f644a3d1b9b4af3028f8a05 (patch)
treea5ff405f8953fad1ab67c74b2224d36fe0213620 /main.qml
parent8983cae468bef36981afb03f5090b5b9b54fcfbb (diff)
parent1215a6e5d88bf300c672c6f622982ee45f410d31 (diff)
downloadmonzero-gui-588b8435b7ab32479f644a3d1b9b4af3028f8a05.tar.gz
monzero-gui-588b8435b7ab32479f644a3d1b9b4af3028f8a05.tar.xz
monzero-gui-588b8435b7ab32479f644a3d1b9b4af3028f8a05.zip
Merge pull request #4051
1215a6e Assume untrusted daemon in simple mode (j-berman) 499c2a4 qsTr scan tx error (j-berman) 3b0e66a Display clear error when user scans older tx via untrusted daemon (j-berman) 4cd6652 Update balance after calling scan_tx (j-berman)
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index 608e6bd7..757c615d 100644
--- a/main.qml
+++ b/main.qml
@@ -379,7 +379,7 @@ ApplicationWindow {
}
function isTrustedDaemon() {
- return !persistentSettings.useRemoteNode || remoteNodesModel.currentRemoteNode().trusted;
+ return appWindow.walletMode >= 2 && (!persistentSettings.useRemoteNode || remoteNodesModel.currentRemoteNode().trusted);
}
function usefulName(path) {