From fa9841b5cf0e398252e09b4b42d3afc15f0cee90 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Tue, 2 Apr 2019 08:42:04 -0400 Subject: [PATCH] Fix a few Bitcoin server strings --- src/bitcoind.cpp | 2 +- src/rpc/server.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bitcoind.cpp b/src/bitcoind.cpp index 177fdca07b..cec24c85ca 100644 --- a/src/bitcoind.cpp +++ b/src/bitcoind.cpp @@ -143,7 +143,7 @@ static bool AppInit(int argc, char* argv[]) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" #endif - fprintf(stdout, "Bitcoin server starting\n"); + fprintf(stdout, "Elements server starting\n"); // Daemonize if (daemon(1, 0)) { // don't chdir (1), do close FDs (0) diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 9628c8db80..020053325f 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -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)