diff options
| author | Ross Nicoll <[email protected]> | 2014-03-28 23:40:56 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2014-03-28 23:40:56 +0000 |
| commit | 48c6ec9af0cef2d6b7aa377def6b2b2de6535480 (patch) | |
| tree | cf7cd3c78d0fd04311184ef1606ce05520f484bb /src/rpcprotocol.cpp | |
| parent | Replaced references to Bitcoin with Dogecoin/Dogecoin Core as appropriate. (diff) | |
| download | discoin-48c6ec9af0cef2d6b7aa377def6b2b2de6535480.tar.xz discoin-48c6ec9af0cef2d6b7aa377def6b2b2de6535480.zip | |
Replaced occurrences of "bitcoin" with "dogecoin" or "Dogecoin" as appropriate
(specific, use of "Dogecoin" as a noun are now capitalised).
Diffstat (limited to 'src/rpcprotocol.cpp')
| -rw-r--r-- | src/rpcprotocol.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpcprotocol.cpp b/src/rpcprotocol.cpp index 23bf73763..87803a4ca 100644 --- a/src/rpcprotocol.cpp +++ b/src/rpcprotocol.cpp @@ -37,7 +37,7 @@ string HTTPPost(const string& strMsg, const map<string,string>& mapRequestHeader { ostringstream s; s << "POST / HTTP/1.1\r\n" - << "User-Agent: bitcoin-json-rpc/" << FormatFullVersion() << "\r\n" + << "User-Agent: dogecoin-json-rpc/" << FormatFullVersion() << "\r\n" << "Host: 127.0.0.1\r\n" << "Content-Type: application/json\r\n" << "Content-Length: " << strMsg.size() << "\r\n" @@ -68,7 +68,7 @@ string HTTPReply(int nStatus, const string& strMsg, bool keepalive) if (nStatus == HTTP_UNAUTHORIZED) return strprintf("HTTP/1.0 401 Authorization Required\r\n" "Date: %s\r\n" - "Server: bitcoin-json-rpc/%s\r\n" + "Server: dogecoin-json-rpc/%s\r\n" "WWW-Authenticate: Basic realm=\"jsonrpc\"\r\n" "Content-Type: text/html\r\n" "Content-Length: 296\r\n" @@ -95,7 +95,7 @@ string HTTPReply(int nStatus, const string& strMsg, bool keepalive) "Connection: %s\r\n" "Content-Length: %"PRIszu"\r\n" "Content-Type: application/json\r\n" - "Server: bitcoin-json-rpc/%s\r\n" + "Server: dogecoin-json-rpc/%s\r\n" "\r\n" "%s", nStatus, |