aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author1Il1 <33648696+1Il1@users.noreply.github.com>2018-12-15 11:12:31 +0900
committerfanquake <fanquake@gmail.com>2018-12-29 17:15:55 +0800
commitb4602e324056391138a1a536bf15a45ebf5b0c61 (patch)
tree5e49e0874bd380d6e93afd2ca38af85ba1e190cb
parentfd616d8d08c61daf13671fbb744c74eb23980901 (diff)
downloadbitcoin-b4602e324056391138a1a536bf15a45ebf5b0c61.tar.xz
fix testmempoolaccept CLI syntax
`testmempoolaccept "hexstring"` will give a "JSON parse error". The correct syntax is `testmempoolaccept \[\"hexstring\"\]` (but seems escaping is not displayed in other areas so leaving backspaces out). Github-Pull: #14966 Rebased-From: b74a52192bcefea6fdc38f244e9500ce5868a0b5
-rw-r--r--src/rpc/rawtransaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/rawtransaction.cpp b/src/rpc/rawtransaction.cpp
index 391e744c90..4258ce2e7f 100644
--- a/src/rpc/rawtransaction.cpp
+++ b/src/rpc/rawtransaction.cpp
@@ -1212,7 +1212,7 @@ static UniValue testmempoolaccept(const JSONRPCRequest& request)
"Sign the transaction, and get back the hex\n"
+ HelpExampleCli("signrawtransaction", "\"myhex\"") +
"\nTest acceptance of the transaction (signed hex)\n"
- + HelpExampleCli("testmempoolaccept", "\"signedhex\"") +
+ + HelpExampleCli("testmempoolaccept", "[\"signedhex\"]") +
"\nAs a json rpc call\n"
+ HelpExampleRpc("testmempoolaccept", "[\"signedhex\"]")
// clang-format on