Update server.cpp

Changed RPC port from 8332 (BTC) to 22555 (Dogecoin)
This commit is contained in:
nformant 2021-07-22 10:49:47 +02:00 committed by GitHub
parent 97f95559c5
commit 8e46b60b2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -529,7 +529,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:22555/\n";
}
void RPCSetTimerInterfaceIfUnset(RPCTimerInterface *iface)