diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-05-03 13:01:13 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-05-03 13:01:13 -0500 |
| commit | 1fcd79729cae0dbd1a99babdca93a58d1b3deba9 (patch) | |
| tree | 97dbf99aac1a9b5f23ddbad340da81752035809b | |
| parent | f53d01be5675a7903819d3b2d5b17d74976c547b (diff) | |
| parent | 5d3fe93e1fa9926ccb276c1c24c995c89b3a39b8 (diff) | |
| download | monzero-gui-1fcd79729cae0dbd1a99babdca93a58d1b3deba9.tar.gz monzero-gui-1fcd79729cae0dbd1a99babdca93a58d1b3deba9.tar.xz monzero-gui-1fcd79729cae0dbd1a99babdca93a58d1b3deba9.zip | |
Merge pull request #2149
5d3fe93 Check before disconnecting wallet (xmrdsc)
| -rw-r--r-- | main.qml | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -587,6 +587,9 @@ ApplicationWindow { } function disconnectRemoteNode() { + if (typeof currentWallet === "undefined" || currentWallet === null) + return; + console.log("disconnecting remote node"); persistentSettings.useRemoteNode = false; currentDaemonAddress = localDaemonAddress |
