From 9569601f8be664dc5cfbd3fb15dcd4936ff6d7bd Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Thu, 15 Nov 2018 16:40:07 -0800 Subject: [PATCH] #49 - Update error message for when zcashd crashes --- src/connection.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/connection.cpp b/src/connection.cpp index 6a4d696..cc2728b 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -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); }