Skip to content

Commit

Permalink
Assume untrusted daemon in simple mode
Browse files Browse the repository at this point in the history
  • Loading branch information
j-berman committed Oct 29, 2022
1 parent 499c2a4 commit 1215a6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1215a6e

Please sign in to comment.