aboutsummaryrefslogtreecommitdiff
path: root/wizard/WizardOpenWallet1.qml
diff options
context:
space:
mode:
Diffstat (limited to 'wizard/WizardOpenWallet1.qml')
-rw-r--r--wizard/WizardOpenWallet1.qml11
1 files changed, 1 insertions, 10 deletions
diff --git a/wizard/WizardOpenWallet1.qml b/wizard/WizardOpenWallet1.qml
index 4d4d1ed7..e0d93a05 100644
--- a/wizard/WizardOpenWallet1.qml
+++ b/wizard/WizardOpenWallet1.qml
@@ -282,16 +282,7 @@ Rectangle {
onClicked: {
persistentSettings.nettype = parseInt(networktype)
- if(appWindow.walletMode === 0 || appWindow.walletMode === 1){
- wizardController.fetchRemoteNodes(function(){
- wizardController.openWalletFile(item.filePath);
- }, function(){
- appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
- wizardController.openWalletFile(item.filePath);
- });
- } else {
- wizardController.openWalletFile(item.filePath);
- }
+ wizardController.openWalletFile(item.filePath);
}
}
}