mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-03-12 09:36:59 +00:00
networkstatus: add remote node
This commit is contained in:
parent
e0e69b35bd
commit
e3eab0c667
1 changed files with 3 additions and 1 deletions
|
@ -29,7 +29,7 @@
|
|||
import QtQuick 2.0
|
||||
import moneroComponents.Wallet 1.0
|
||||
|
||||
Row {
|
||||
Rectangle {
|
||||
id: item
|
||||
property var connected: Wallet.ConnectionStatus_Disconnected
|
||||
|
||||
|
@ -51,6 +51,8 @@ Row {
|
|||
if (status == Wallet.ConnectionStatus_Connected) {
|
||||
if(!appWindow.daemonSynced)
|
||||
return qsTr("Synchronizing")
|
||||
if(appWindow.remoteNodeConnected)
|
||||
return qsTr("Remote node")
|
||||
return qsTr("Connected")
|
||||
}
|
||||
if (status == Wallet.ConnectionStatus_WrongVersion)
|
||||
|
|
Loading…
Reference in a new issue