From e80de3b274882ef797b264f4563c71159573b0e3 Mon Sep 17 00:00:00 2001 From: jl777 Date: Tue, 15 Nov 2016 11:20:45 -0300 Subject: [PATCH] test --- src/rpcserver.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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";