Merge pull request #1961

632423d Dont show message on simple mode disconnect/reconnect (xmrdsc)
pull/2/head
luigi1111 5 years ago
commit a237d16f7d
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

@ -1796,7 +1796,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.");
});
}
}

@ -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 {

@ -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 {

@ -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 {