#92 - Check process is alive before shuting it down
This commit is contained in:
@@ -1056,7 +1056,7 @@ void RPC::refreshZECPrice() {
|
|||||||
|
|
||||||
void RPC::shutdownZcashd() {
|
void RPC::shutdownZcashd() {
|
||||||
// Shutdown embedded zcashd if it was started
|
// Shutdown embedded zcashd if it was started
|
||||||
if (ezcashd == nullptr || conn == nullptr) {
|
if (ezcashd == nullptr || ezcashd->processId() == 0 || conn == nullptr) {
|
||||||
// No zcashd running internally, just return
|
// No zcashd running internally, just return
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user