Browse Source

#92 - Check process is alive before shuting it down

pull/45/head
adityapk00 5 years ago
parent
commit
41edf32c71
  1. 2
      src/rpc.cpp

2
src/rpc.cpp

@ -1056,7 +1056,7 @@ void RPC::refreshZECPrice() {
void RPC::shutdownZcashd() {
// 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
return;
}

Loading…
Cancel
Save