[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 e757c31481
commit 9ffa0c67fa

View file

@ -521,7 +521,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)