diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-12-27 12:22:30 -0500 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2020-01-23 10:23:30 -0500 |
commit | fa5c6622c8ecf1954e7177888ad8c97a77b16fb7 (patch) | |
tree | 5d5b1b3c0b7a9e484b7b5df196f8788e54dbd0db /src/wallet/rpcdump.cpp | |
parent | fab63111bec73859597e6ce0986f76e5e9959091 (diff) |
doc: Use proper RPC help syntax in importmulti
Diffstat (limited to 'src/wallet/rpcdump.cpp')
-rw-r--r-- | src/wallet/rpcdump.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/wallet/rpcdump.cpp b/src/wallet/rpcdump.cpp index 633ac1b16d..30ba9ec7b7 100644 --- a/src/wallet/rpcdump.cpp +++ b/src/wallet/rpcdump.cpp @@ -1322,8 +1322,19 @@ UniValue importmulti(const JSONRPCRequest& mainRequest) "\"options\""}, }, RPCResult{ - "\nResponse is an array with the same size as the input that has the execution result :\n" - " [{\"success\": true}, {\"success\": true, \"warnings\": [\"Ignoring irrelevant private key\"]}, {\"success\": false, \"error\": {\"code\": -1, \"message\": \"Internal Server Error\"}}, ...]\n" + "[ (json array) Response is an array with the same size as the input that has the execution result\n" + " { (json object)\n" + " \"success\" : true|false, (boolean)\n" + " \"warnings\" : [ (json array, optional)\n" + " \"str\", (string)\n" + " ...\n" + " ],\n" + " \"error\" : { (json object, optional)\n" + " ... JSONRPC error\n" + " },\n" + " },\n" + " ...\n" + "]\n" }, RPCExamples{ HelpExampleCli("importmulti", "'[{ \"scriptPubKey\": { \"address\": \"<my address>\" }, \"timestamp\":1455191478 }, " |