diff options
author | Martin Zumsande <mzumsande@gmail.com> | 2023-08-17 16:18:53 -0400 |
---|---|---|
committer | Martin Zumsande <mzumsande@gmail.com> | 2023-08-17 16:18:56 -0400 |
commit | 239431444216850b63ecf01c3b5c5d6d24230d08 (patch) | |
tree | b8bd6ff796ca6bab5fb50c460b3ae7cd74d03ad5 /src/rpc | |
parent | 6ce5e8f4758e6fccf59b3980af417ec6c75e383e (diff) |
rpc: remove one more quote from non-string oneline description
This fixes a silent conflict betwen #28123 and #27460
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/mempool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/mempool.cpp b/src/rpc/mempool.cpp index b1d2414416..bda0e7c348 100644 --- a/src/rpc/mempool.cpp +++ b/src/rpc/mempool.cpp @@ -744,7 +744,7 @@ static RPCHelpMan importmempool() "Whether to apply the unbroadcast set metadata from the mempool file.\n" "Warning: Importing untrusted metadata may lead to unexpected issues and undesirable behavior."}, }, - RPCArgOptions{.oneline_description = "\"options\""}}, + RPCArgOptions{.oneline_description = "options"}}, }, RPCResult{RPCResult::Type::OBJ, "", "", std::vector<RPCResult>{}}, RPCExamples{HelpExampleCli("importmempool", "/path/to/mempool.dat") + HelpExampleRpc("importmempool", "/path/to/mempool.dat")}, |