diff options
| author | Sporklin <[email protected]> | 2015-10-19 19:11:36 -0400 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-10-31 14:49:41 +0000 |
| commit | aab8f402fa0a6b397b41ef2113a0de9364526971 (patch) | |
| tree | decdd5612be9206eae7138ff6835537d6e119fc5 | |
| parent | Mark as release version (diff) | |
| download | discoin-aab8f402fa0a6b397b41ef2113a0de9364526971.tar.xz discoin-aab8f402fa0a6b397b41ef2113a0de9364526971.zip | |
Changing to the proper ports for Dogecoin.
| -rw-r--r-- | contrib/bitrpc/bitrpc.py | 4 | ||||
| -rw-r--r-- | contrib/debian/manpages/dogecoin-qt.1 | 4 | ||||
| -rw-r--r-- | contrib/debian/manpages/dogecoin.conf.5 | 2 | ||||
| -rw-r--r-- | src/init.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/contrib/bitrpc/bitrpc.py b/contrib/bitrpc/bitrpc.py index c3ce9d793..f67584730 100644 --- a/contrib/bitrpc/bitrpc.py +++ b/contrib/bitrpc/bitrpc.py @@ -11,9 +11,9 @@ rpcpass = "" if rpcpass == "": - access = ServiceProxy("http://127.0.0.1:8332") + access = ServiceProxy("http://127.0.0.1:22555") else: - access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:8332") + access = ServiceProxy("http://"+rpcuser+":"+rpcpass+"@127.0.0.1:22555") cmd = sys.argv[1].lower() if cmd == "backupwallet": diff --git a/contrib/debian/manpages/dogecoin-qt.1 b/contrib/debian/manpages/dogecoin-qt.1 index 9bfac3ccf..6a2c0d0df 100644 --- a/contrib/debian/manpages/dogecoin-qt.1 +++ b/contrib/debian/manpages/dogecoin-qt.1 @@ -41,7 +41,7 @@ Use proxy to reach tor hidden services (default: same as \fB\-proxy\fR) Allow DNS lookups for \fB\-addnode\fR, \fB\-seednode\fR and \fB\-connect\fR .TP \fB\-port=\fR<port> -Listen for connections on <port> (default: 8333 or testnet: 18333) +Listen for connections on <port> (default: 22556 or testnet: 44556) .TP \fB\-maxconnections=\fR<n> Maintain at most <n> connections to peers (default: 125) @@ -122,7 +122,7 @@ Username for JSON\-RPC connections Password for JSON\-RPC connections .TP \fB\-rpcport=\fR<port> -Listen for JSON\-RPC connections on <port> (default: 8332 or testnet: 18332) +Listen for JSON\-RPC connections on <port> (default: 22555 or testnet: 44555) .TP \fB\-rpcallowip=\fR<ip> Allow JSON\-RPC connections from specified IP address diff --git a/contrib/debian/manpages/dogecoin.conf.5 b/contrib/debian/manpages/dogecoin.conf.5 index 2d1e28b76..75eb783a0 100644 --- a/contrib/debian/manpages/dogecoin.conf.5 +++ b/contrib/debian/manpages/dogecoin.conf.5 @@ -40,7 +40,7 @@ You must set *rpcpassword* to secure the JSON-RPC api. \fBrpcallowip=\fR\fI'192.168.1.*'\fR By default, only RPC connections from localhost are allowed. Specify as many *rpcallowip=* settings as you like to allow connections from other hosts (and you may use * as a wildcard character). .TP -\fBrpcport=\fR\fI'8332'\fR +\fBrpcport=\fR\fI'22555'\fR Listen for RPC connections on this TCP port. .TP \fBrpcconnect=\fR\fI'127.0.0.1'\fR diff --git a/src/init.cpp b/src/init.cpp index 863cdaf69..1bf6f28ed 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -316,7 +316,7 @@ std::string HelpMessage(HelpMessageMode mode) strUsage += HelpMessageOpt("-onion=<ip:port>", strprintf(_("Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: %s)"), "-proxy")); strUsage += HelpMessageOpt("-onlynet=<net>", _("Only connect to nodes in network <net> (ipv4, ipv6 or onion)")); strUsage += HelpMessageOpt("-permitbaremultisig", strprintf(_("Relay non-P2SH multisig (default: %u)"), 1)); - strUsage += HelpMessageOpt("-port=<port>", strprintf(_("Listen for connections on <port> (default: %u or testnet: %u)"), 8333, 18333)); + strUsage += HelpMessageOpt("-port=<port>", strprintf(_("Listen for connections on <port> (default: %u or testnet: %u)"), 22556, 44556)); strUsage += HelpMessageOpt("-proxy=<ip:port>", _("Connect through SOCKS5 proxy")); strUsage += HelpMessageOpt("-proxyrandomize", strprintf(_("Randomize credentials for every proxy connection. This enables Tor stream isolation (default: %u)"), 1)); strUsage += HelpMessageOpt("-seednode=<ip>", _("Connect to a node to retrieve peer addresses, and disconnect")); |