aboutsummaryrefslogtreecommitdiff
path: root/src/rpc/server.cpp
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-12-27 09:38:56 -0800
committerMarcoFalke <falke.marco@gmail.com>2020-02-09 05:12:43 -0800
commitfad027fb0ce019f31b20861c37e802d4e29e6931 (patch)
treee3902c7e91ae84ae187a454a14fdba0b6929fe3f /src/rpc/server.cpp
parent75fb37ce68289eb7e00e2ccdd2ef7f9271332545 (diff)
downloadbitcoin-fad027fb0ce019f31b20861c37e802d4e29e6931.tar.xz
scripted-diff: Add missing spaces in RPCResult, Fix type names
This makes the rendered diff smaller when the RPCResult is machine generated later on -BEGIN VERIFY SCRIPT- # Add space after dictionary key and before colon sed -i --regexp-extended -e 's/(^ +" +\\"[a-zA-Z_]+\\"): ?/\1 : /g' $(git grep -l '\\":') # Rename (array) to (json array) sed -i -e 's/ (array) / (json array) /g' $(git grep -l '(array)' ./src) # Rename (object) to (json object) sed -i -e 's/ (object) / (json object) /g' $(git grep -l '(object)' ./src) # Rename (bool) to (boolean) sed -i -e 's/ (bool) / (boolean) /g' $(git grep -l '(bool)' ./src) # Rename (int) to (numeric) sed -i -e 's/ (int) / (numeric) /g' $(git grep -l '(int)' ./src) -END VERIFY SCRIPT-
Diffstat (limited to 'src/rpc/server.cpp')
-rw-r--r--src/rpc/server.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rpc/server.cpp b/src/rpc/server.cpp
index df8e687d82..b62490ed29 100644
--- a/src/rpc/server.cpp
+++ b/src/rpc/server.cpp
@@ -198,14 +198,14 @@ static UniValue getrpcinfo(const JSONRPCRequest& request)
{},
RPCResult{
"{\n"
- " \"active_commands\" (array) All active commands\n"
+ " \"active_commands\" (json array) All active commands\n"
" [\n"
- " { (object) Information about an active command\n"
+ " { (json object) Information about an active command\n"
" \"method\" (string) The name of the RPC command \n"
" \"duration\" (numeric) The running time in microseconds\n"
" },...\n"
" ],\n"
- " \"logpath\": \"xxx\" (string) The complete file path to the debug log\n"
+ " \"logpath\" : \"xxx\" (string) The complete file path to the debug log\n"
"}\n"
},
RPCExamples{