#49 - Update error message for when zcashd crashes

This commit is contained in:
Aditya Kulkarni
2018-11-15 16:40:07 -08:00
parent b150f074f7
commit 9569601f8b

View File

@@ -46,7 +46,8 @@ void ConnectionLoader::doAutoConnect() {
} else {
// Errored out, show error and exit
QString explanation = QString() % "Couldn't start the embedded zcashd.\n\n" %
"Maybe the zcash-params are corrupt? Please delete your zcash-params directory and restart.\n\n" %
"Did you previously start zcashd with custom arguments not in zcash.conf? Or maybe the zcash-params are corrupt?\n" %
"Please delete your zcash-params directory and restart.\n\n" %
(ezcashd ? "The process returned:\n\n" % ezcashd->errorString() : QString(""));
this->showError(explanation);
}