From 9ffa0c67fa2fe65205ffc4b32db44edab94dfffc Mon Sep 17 00:00:00 2001 From: Karl-Johan Alm Date: Thu, 23 Feb 2017 13:00:49 -0800 Subject: [PATCH] [doc] HelpExampleCLI should use the right binary name. --- src/rpc/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 354d52375d..15c71f755e 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -521,7 +521,7 @@ std::vector CRPCTable::listCommands() const std::string HelpExampleCli(const std::string& methodname, const std::string& args) { - return "> bitcoin-cli " + methodname + " " + args + "\n"; + return "> elements-cli " + methodname + " " + args + "\n"; } std::string HelpExampleRpc(const std::string& methodname, const std::string& args)