update zcash-cli stop message

changed "Bitcoin server stopping" to "Zcash server stopping"
This commit is contained in:
Gaurav Rana 2016-08-20 12:27:12 +00:00 committed by GitHub
parent 7e556172d9
commit 6c7cc8ebea
1 changed files with 2 additions and 2 deletions

View File

@ -254,10 +254,10 @@ Value stop(const Array& params, bool fHelp)
if (fHelp || params.size() > 1)
throw runtime_error(
"stop\n"
"\nStop Bitcoin server.");
"\nStop Zcash server.");
// Shutdown will take long enough that the response should get back
StartShutdown();
return "Bitcoin server stopping";
return "Zcash server stopping";
}