mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Settings: do not invoke status command when using remote node
This commit is contained in:
parent
5a5d92e6f6
commit
eed500560d
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ Rectangle {
|
|||
console.log("Settings page loaded");
|
||||
|
||||
if(typeof daemonManager != "undefined"){
|
||||
appWindow.daemonRunning = daemonManager.running(persistentSettings.testnet);
|
||||
appWindow.daemonRunning = persistentSettings.useRemoteNode ? false : daemonManager.running(persistentSettings.testnet);
|
||||
}
|
||||
|
||||
logLevelDropdown.update()
|
||||
|
|
Loading…
Reference in a new issue