mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-16 15:58:11 +00:00
Merge pull request #1961
632423d
Dont show message on simple mode disconnect/reconnect (xmrdsc)
This commit is contained in:
commit
a237d16f7d
4 changed files with 4 additions and 4 deletions
2
main.qml
2
main.qml
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue