1
mirror of https://github.com/monero-project/monero-gui synced 2024-12-18 05:15:54 +01:00

main: fix local node status check on closing uninitialized wallet

This commit is contained in:
xiphon 2020-05-04 14:48:56 +00:00
parent ce6cc47afe
commit c439d6814b

View File

@ -1951,14 +1951,26 @@ ApplicationWindow {
}
// If daemon is running - prompt user before exiting
if(typeof daemonManager != "undefined" && daemonRunning) {
if (appWindow.walletMode == 0) {
stopDaemon(closeAccepted);
} else {
showDaemonIsRunningDialog(closeAccepted);
}
} else {
if(daemonManager == undefined || persistentSettings.useRemoteNode) {
closeAccepted();
} else if (appWindow.walletMode == 0) {
stopDaemon(closeAccepted);
} else {
showProcessingSplash(qsTr("Checking local node status..."));
const handler = function(running) {
hideProcessingSplash();
if (running) {
showDaemonIsRunningDialog(closeAccepted);
} else {
closeAccepted();
}
};
if (currentWallet) {
handler(!currentWallet.disconnected);
} else {
daemonManager.runningAsync(persistentSettings.nettype, handler);
}
}
}