aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.qml7
1 files changed, 7 insertions, 0 deletions
diff --git a/main.qml b/main.qml
index b1e58663..7b8eb06e 100644
--- a/main.qml
+++ b/main.qml
@@ -602,6 +602,9 @@ ApplicationWindow {
function connectRemoteNode() {
console.log("connecting remote node");
+ p2poolManager.exit();
+ p2poolManager.getStatus();
+
const callback = function() {
persistentSettings.useRemoteNode = true;
const remoteNode = remoteNodesModel.currentRemoteNode();
@@ -630,6 +633,10 @@ ApplicationWindow {
return;
console.log("disconnecting remote node");
+
+ p2poolManager.exit();
+ p2poolManager.getStatus();
+
persistentSettings.useRemoteNode = false;
currentDaemonAddress = localDaemonAddress
currentWallet.setDaemonLogin("", "");