mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 00:07:51 +00:00
Dont show message on simple mode disconnect/reconnect
This commit is contained in:
parent
f3a47dbff8
commit
632423da07
4 changed files with 4 additions and 4 deletions
2
main.qml
2
main.qml
|
@ -1791,7 +1791,7 @@ ApplicationWindow {
|
||||||
appWindow.disconnectedEpoch = 0;
|
appWindow.disconnectedEpoch = 0;
|
||||||
return;
|
return;
|
||||||
}, function(){
|
}, 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(){
|
wizardController.fetchRemoteNodes(function(){
|
||||||
wizardStateView.state = "wizardCreateWallet4";
|
wizardStateView.state = "wizardCreateWallet4";
|
||||||
}, function(){
|
}, 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";
|
wizardStateView.state = "wizardCreateWallet4";
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -198,7 +198,7 @@ Rectangle {
|
||||||
wizardController.fetchRemoteNodes(function(){
|
wizardController.fetchRemoteNodes(function(){
|
||||||
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
|
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
|
||||||
}, function(){
|
}, 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");
|
wizardController.openWalletFile(moneroAccountsDir + "/" + fileName + "/" + fileName + ".keys");
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -72,7 +72,7 @@ Rectangle {
|
||||||
wizardController.fetchRemoteNodes(function(){
|
wizardController.fetchRemoteNodes(function(){
|
||||||
wizardStateView.state = "wizardRestoreWallet4";
|
wizardStateView.state = "wizardRestoreWallet4";
|
||||||
}, function(){
|
}, 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";
|
wizardStateView.state = "wizardRestoreWallet4";
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue