mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Merge pull request #3995
7184c45
main: only check mining status when using local node (selsta)
This commit is contained in:
commit
264d3694c5
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