From 1215a6e5d88bf300c672c6f622982ee45f410d31 Mon Sep 17 00:00:00 2001 From: j-berman Date: Sat, 29 Oct 2022 14:23:13 -0500 Subject: [PATCH] Assume untrusted daemon in simple mode --- main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.qml b/main.qml index 4be6be06..8a1edbf9 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) {