[doc] HelpExampleCLI should use the right binary name.

This commit is contained in:
Karl-Johan Alm 2017-02-23 13:00:49 -08:00 committed by Gregory Sanders
parent 2309b35f30
commit fd195b4551

View file

@ -467,7 +467,7 @@ std::vector<std::string> 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)