diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index 90a255401..1a8562b87 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -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"; }