mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-08 20:09:48 +00:00
main: only check mining status when using local node
This commit is contained in:
parent
064c145aa8
commit
7184c45043
1 changed files with 3 additions and 1 deletions
4
main.qml
4
main.qml
|
@ -481,7 +481,9 @@ ApplicationWindow {
|
|||
walletInitialized = true
|
||||
|
||||
// check if daemon was already mining and add mining logo if true
|
||||
middlePanel.advancedView.miningView.update();
|
||||
if (!persistentSettings.useRemoteNode || persistentSettings.allowRemoteNodeMining) {
|
||||
middlePanel.advancedView.miningView.update();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue