diff options
Diffstat (limited to 'src/rpc')
| -rw-r--r-- | src/rpc/blockchain.cpp | 4 | ||||
| -rw-r--r-- | src/rpc/mining.cpp | 2 | ||||
| -rw-r--r-- | src/rpc/misc.cpp | 16 | ||||
| -rw-r--r-- | src/rpc/net.cpp | 2 | ||||
| -rw-r--r-- | src/rpc/rawtransaction.cpp | 8 | ||||
| -rw-r--r-- | src/rpc/server.cpp | 2 |
6 files changed, 17 insertions, 17 deletions
diff --git a/src/rpc/blockchain.cpp b/src/rpc/blockchain.cpp index 4e8eff7e0..79adf0dc4 100644 --- a/src/rpc/blockchain.cpp +++ b/src/rpc/blockchain.cpp @@ -969,8 +969,8 @@ UniValue gettxout(const JSONRPCRequest& request) " \"hex\" : \"hex\", (string) \n" " \"reqSigs\" : n, (numeric) Number of required signatures\n" " \"type\" : \"pubkeyhash\", (string) The type, eg pubkeyhash\n" - " \"addresses\" : [ (array of string) array of dogecoin addresses\n" - " \"address\" (string) dogecoin address\n" + " \"addresses\" : [ (array of string) array of discoin addresses\n" + " \"address\" (string) discoin address\n" " ,...\n" " ]\n" " },\n" diff --git a/src/rpc/mining.cpp b/src/rpc/mining.cpp index 0637d6b33..2309030ac 100644 --- a/src/rpc/mining.cpp +++ b/src/rpc/mining.cpp @@ -220,7 +220,7 @@ UniValue generatetoaddress(const JSONRPCRequest& request) "\nMine blocks immediately to a specified address (before the RPC call returns)\n" "\nArguments:\n" "1. nblocks (numeric, required) How many blocks are generated immediately.\n" - "2. address (string, required) The address to send the newly generated dogecoin to.\n" + "2. address (string, required) The address to send the newly generated discoin to.\n" "3. maxtries (numeric, optional) How many iterations to try (default = 1000000).\n" "4. auxpow (numeric, optional) If the block should include the auxpow header (default = 0).\n" "\nResult:\n" diff --git a/src/rpc/misc.cpp b/src/rpc/misc.cpp index 200500f04..a968d3a86 100644 --- a/src/rpc/misc.cpp +++ b/src/rpc/misc.cpp @@ -50,7 +50,7 @@ UniValue getinfo(const JSONRPCRequest& request) " \"version\": xxxxx, (numeric) the server version\n" " \"protocolversion\": xxxxx, (numeric) the protocol version\n" " \"walletversion\": xxxxx, (numeric) the wallet version\n" - " \"balance\": xxxxxxx, (numeric) the total dogecoin balance of the wallet\n" + " \"balance\": xxxxxxx, (numeric) the total discoin balance of the wallet\n" " \"blocks\": xxxxxx, (numeric) the current number of blocks processed in the server\n" " \"timeoffset\": xxxxx, (numeric) the time offset\n" " \"connections\": xxxxx, (numeric) the number of connections\n" @@ -153,13 +153,13 @@ UniValue validateaddress(const JSONRPCRequest& request) if (request.fHelp || request.params.size() != 1) throw runtime_error( "validateaddress \"address\"\n" - "\nReturn information about the given dogecoin address.\n" + "\nReturn information about the given discoin address.\n" "\nArguments:\n" - "1. \"address\" (string, required) The dogecoin address to validate\n" + "1. \"address\" (string, required) The discoin address to validate\n" "\nResult:\n" "{\n" " \"isvalid\" : true|false, (boolean) If the address is valid or not. If not, this is the only property returned.\n" - " \"address\" : \"address\", (string) The dogecoin address validated\n" + " \"address\" : \"address\", (string) The discoin address validated\n" " \"scriptPubKey\" : \"hex\", (string) The hex encoded scriptPubKey generated by the address\n" " \"ismine\" : true|false, (boolean) If the address is yours or not\n" " \"iswatchonly\" : true|false, (boolean) If the address is watchonly\n" @@ -298,9 +298,9 @@ UniValue createmultisig(const JSONRPCRequest& request) "\nArguments:\n" "1. nrequired (numeric, required) The number of required signatures out of the n keys or addresses.\n" - "2. \"keys\" (string, required) A json array of keys which are dogecoin addresses or hex-encoded public keys\n" + "2. \"keys\" (string, required) A json array of keys which are discoin addresses or hex-encoded public keys\n" " [\n" - " \"key\" (string) dogecoin address or hex-encoded public key\n" + " \"key\" (string) discoin address or hex-encoded public key\n" " ,...\n" " ]\n" @@ -338,7 +338,7 @@ UniValue verifymessage(const JSONRPCRequest& request) "verifymessage \"address\" \"signature\" \"message\"\n" "\nVerify a signed message\n" "\nArguments:\n" - "1. \"address\" (string, required) The dogecoin address to use for the signature.\n" + "1. \"address\" (string, required) The discoin address to use for the signature.\n" "2. \"signature\" (string, required) The signature provided by the signer in base 64 encoding (see signmessage).\n" "3. \"message\" (string, required) The message that was signed.\n" "\nResult:\n" @@ -503,7 +503,7 @@ UniValue echo(const JSONRPCRequest& request) "echo|echojson \"message\" ...\n" "\nSimply echo back the input arguments. This command is for testing.\n" "\nThe difference between echo and echojson is that echojson has argument conversion enabled in the client-side table in" - "dogecoin-cli and the GUI. There is no server-side difference." + "discoin-cli and the GUI. There is no server-side difference." ); return request.params; diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index d092d47d4..e7ae35440 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -276,7 +276,7 @@ UniValue getaddednodeinfo(const JSONRPCRequest& request) " \"connected\" : true|false, (boolean) If connected\n" " \"addresses\" : [ (list of objects) Only when connected = true\n" " {\n" - " \"address\" : \"192.168.0.201:22556\", (string) The dogecoin server IP and port we're connected to\n" + " \"address\" : \"192.168.0.201:22556\", (string) The discoin server IP and port we're connected to\n" " \"connected\" : \"outbound\" (string) connection, inbound or outbound\n" " }\n" " ]\n" diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp index 0c3817729..c2a60cd36 100644 --- a/src/rpc/rawtransaction.cpp +++ b/src/rpc/rawtransaction.cpp @@ -176,7 +176,7 @@ UniValue getrawtransaction(const JSONRPCRequest& request) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"address\" (string) dogecoin address\n" + " \"address\" (string) discoin address\n" " ,...\n" " ]\n" " }\n" @@ -373,7 +373,7 @@ UniValue createrawtransaction(const JSONRPCRequest& request) " ]\n" "2. \"outputs\" (object, required) a json object with outputs\n" " {\n" - " \"address\": x.xxx, (numeric or string, required) The key is the dogecoin address, the numeric value (can be string) is the " + CURRENCY_UNIT + " amount\n" + " \"address\": x.xxx, (numeric or string, required) The key is the discoin address, the numeric value (can be string) is the " + CURRENCY_UNIT + " amount\n" " \"data\": \"hex\" (string, required) The key is \"data\", the value is hex encoded data\n" " ,...\n" " }\n" @@ -504,7 +504,7 @@ UniValue decoderawtransaction(const JSONRPCRequest& request) " \"reqSigs\" : n, (numeric) The required sigs\n" " \"type\" : \"pubkeyhash\", (string) The type, eg 'pubkeyhash'\n" " \"addresses\" : [ (json array of string)\n" - " \"D731rRTrFydjJdZCKNzfB5go229p59GUGD\" (string) dogecoin address\n" + " \"D731rRTrFydjJdZCKNzfB5go229p59GUGD\" (string) discoin address\n" " ,...\n" " ]\n" " }\n" @@ -547,7 +547,7 @@ UniValue decodescript(const JSONRPCRequest& request) " \"type\":\"type\", (string) The output type\n" " \"reqSigs\": n, (numeric) The required signatures\n" " \"addresses\": [ (json array of string)\n" - " \"address\" (string) dogecoin address\n" + " \"address\" (string) discoin address\n" " ,...\n" " ],\n" " \"p2sh\",\"address\" (string) address of P2SH script wrapping this redeem script (not returned if the script is already a P2SH).\n" diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp index e25869a89..844ddf0fb 100644 --- a/src/rpc/server.cpp +++ b/src/rpc/server.cpp @@ -523,7 +523,7 @@ std::vector<std::string> CRPCTable::listCommands() const std::string HelpExampleCli(const std::string& methodname, const std::string& args) { - return "> dogecoin-cli " + methodname + " " + args + "\n"; + return "> discoin-cli " + methodname + " " + args + "\n"; } std::string HelpExampleRpc(const std::string& methodname, const std::string& args) |