Dont show message on simple mode disconnect/reconnect

This commit is contained in:
dsc 2019-02-25 16:07:03 +01:00
parent f3a47dbff8
commit 632423da07
No known key found for this signature in database
GPG key ID: 7BBC83D7A8810AAB
4 changed files with 4 additions and 4 deletions

View file

@ -1791,7 +1791,7 @@ ApplicationWindow {
appWindow.disconnectedEpoch = 0;
return;
}, function(){
appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), simpleModeConnectionTimer.interval / 1000);
console.log("Failed to fetch remote nodes from third-party server.");
});
}
}

View file

@ -73,7 +73,7 @@ Rectangle {
wizardController.fetchRemoteNodes(function(){
wizardStateView.state = "wizardCreateWallet4";
}, function(){
appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
console.log("Failed to fetch remote nodes from third-party server.");
wizardStateView.state = "wizardCreateWallet4";
});
} else {

View file

@ -198,7 +198,7 @@ Rectangle {
wizardController.fetchRemoteNodes(function(){
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
}, function(){
appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
console.log("Failed to fetch remote nodes from third-party server.");
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
});
} else {

View file

@ -72,7 +72,7 @@ Rectangle {
wizardController.fetchRemoteNodes(function(){
wizardStateView.state = "wizardRestoreWallet4";
}, function(){
appWindow.showStatusMessage(qsTr("Failed to fetch remote nodes from third-party server."), 5);
console.log("Failed to fetch remote nodes from third-party server.");
wizardStateView.state = "wizardRestoreWallet4";
});
} else {