Assume untrusted daemon in simple mode

This commit is contained in:
j-berman 2022-10-29 14:23:13 -05:00
parent 499c2a47fc
commit 1215a6e5d8
1 changed files with 1 additions and 1 deletions

View File

@ -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) {