diff options
author | 1Il1 <33648696+1Il1@users.noreply.github.com> | 2018-12-15 11:12:31 +0900 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2018-12-29 17:15:55 +0800 |
commit | b4602e324056391138a1a536bf15a45ebf5b0c61 (patch) | |
tree | 5e49e0874bd380d6e93afd2ca38af85ba1e190cb /src/rpc | |
parent | fd616d8d08c61daf13671fbb744c74eb23980901 (diff) |
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
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/rawtransaction.cpp | 2 |
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 |