diff --git a/src/rpcserver.cpp b/src/rpcserver.cpp index adb6b36bc..e8a9958ce 100644 --- a/src/rpcserver.cpp +++ b/src/rpcserver.cpp @@ -253,12 +253,11 @@ Value help(const Array& params, bool fHelp) Value stop(const Array& params, bool fHelp) { - extern char ASSETCHAINS_SYMBOL[16]; // Accept the deprecated and ignored 'detach' boolean argument if (fHelp || params.size() > 1) throw runtime_error( "stop\n" - "\nStop Komodo %s server.",ASSETCHAINS_SYMBOL); + "\nStop Komodo server."); // Shutdown will take long enough that the response should get back StartShutdown(); return "Komodo server stopping";