From 8e46b60b2fb692310c2869caf85e138e4d495cb0 Mon Sep 17 00:00:00 2001 From: nformant <54002590+nformant1@users.noreply.github.com> Date: Thu, 22 Jul 2021 10:49:47 +0200 Subject: [PATCH] Update server.cpp Changed RPC port from 8332 (BTC) to 22555 (Dogecoin) --- src/rpc/server.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index 303806b99..e25869a89 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -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)