fix HelpExamplRPC port for liquidv1 vs bitcoin mainnet

This commit is contained in:
Gregory Sanders 2019-08-30 11:36:01 -04:00 committed by Steven Roose
parent e3b750da4e
commit 299c3fc9f5
No known key found for this signature in database
GPG key ID: 2F2A88D7F8D68E87

View file

@ -590,7 +590,7 @@ std::string HelpExampleCli(const std::string& methodname, const std::string& arg
std::string HelpExampleRpc(const std::string& methodname, const std::string& args)
{
return "> curl --user myusername --data-binary '{\"jsonrpc\": \"1.0\", \"id\":\"curltest\", "
"\"method\": \"" + methodname + "\", \"params\": [" + args + "] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/\n";
"\"method\": \"" + methodname + "\", \"params\": [" + args + "] }' -H 'content-type: text/plain;' http://127.0.0.1:7041/\n";
}
void RPCSetTimerInterfaceIfUnset(RPCTimerInterface *iface)