Fix a few Bitcoin server strings

This commit is contained in:
Gregory Sanders 2019-04-02 08:42:04 -04:00
parent a904f02fb1
commit fa9841b5cf
2 changed files with 3 additions and 3 deletions

View file

@ -229,11 +229,11 @@ UniValue stop(const JSONRPCRequest& jsonRequest)
if (jsonRequest.fHelp || jsonRequest.params.size() > 1)
throw std::runtime_error(
"stop\n"
"\nStop Bitcoin server.");
"\nStop Elements server.");
// Event loop will exit after current HTTP requests have been handled, so
// this reply will get back to the client.
StartShutdown();
return "Bitcoin server stopping";
return "Elements server stopping";
}
static UniValue uptime(const JSONRPCRequest& jsonRequest)