diff options
Diffstat (limited to 'components/NetworkStatusItem.qml')
| -rw-r--r-- | components/NetworkStatusItem.qml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/NetworkStatusItem.qml b/components/NetworkStatusItem.qml index fefba1c1..48eeccc2 100644 --- a/components/NetworkStatusItem.qml +++ b/components/NetworkStatusItem.qml @@ -52,6 +52,8 @@ Rectangle { case Wallet.ConnectionStatus_Connected: if (!appWindow.daemonSynced) return qsTr("Synchronizing"); + if (persistentSettings.useRemoteNode && persistentSettings.allowRemoteNodeMining && appWindow.isMining) + return qsTr("Remote node") + " + " + qsTr("Mining"); if (persistentSettings.useRemoteNode) return qsTr("Remote node"); return appWindow.isMining ? qsTr("Connected") + " + " + qsTr("Mining"): qsTr("Connected"); |
