aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/misc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/rpc/misc.cpp')
-rw-r--r--src/rpc/misc.cpp16
1 files changed, 8 insertions, 8 deletions
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;