fix HelpExamplRPC port for liquidv1 vs bitcoin mainnet

This commit is contained in:
Gregory Sanders 2019-08-30 11:36:01 -04:00
parent d35bf08210
commit adedc7f9c1

View file

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