diff options
| author | nformant <[email protected]> | 2021-07-22 10:49:47 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-07-22 10:49:47 +0200 |
| commit | 8e46b60b2fb692310c2869caf85e138e4d495cb0 (patch) | |
| tree | 632f23fec92c6d81019086b09d82381205c0c457 /src/rpc/server.cpp | |
| parent | Merge pull request #2413 from dogecoin/revert-2342-issue-2340-depends-build-d... (diff) | |
| download | discoin-8e46b60b2fb692310c2869caf85e138e4d495cb0.tar.xz discoin-8e46b60b2fb692310c2869caf85e138e4d495cb0.zip | |
Update server.cpp
Changed RPC port from 8332 (BTC) to 22555 (Dogecoin)
Diffstat (limited to 'src/rpc/server.cpp')
| -rw-r--r-- | src/rpc/server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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) |