mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Assume untrusted daemon in simple mode
This commit is contained in:
parent
499c2a47fc
commit
1215a6e5d8
1 changed files with 1 additions and 1 deletions
2
main.qml
2
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) {
|
||||
|
|
Loading…
Reference in a new issue