SettingsNode: implement multiple remote nodes support

This commit is contained in:
xiphon
2021-04-03 10:45:02 +00:00
parent 34df4e74d4
commit 6bc9627046
7 changed files with 435 additions and 89 deletions

View File

@@ -65,10 +65,10 @@ ColumnLayout {
}
WizardSummaryItem {
visible: persistentSettings.remoteNodeAddress !== "" && appWindow.walletMode == 0
visible: remoteNodesModel.currentRemoteNode().address !== "" && appWindow.walletMode == 0
Layout.fillWidth: true
header: qsTr("Daemon address") + translationManager.emptyString
value: persistentSettings.remoteNodeAddress
value: remoteNodesModel.currentRemoteNode().address
}
WizardSummaryItem {