p2pool: Stop p2pool mining on node switch

This commit is contained in:
devhyper 2023-02-02 17:32:06 -08:00
parent b7ba9437d8
commit 587ea68a99
No known key found for this signature in database
GPG Key ID: D5F749908AE9DA70
1 changed files with 7 additions and 0 deletions

View File

@ -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("", "");