From 239431444216850b63ecf01c3b5c5d6d24230d08 Mon Sep 17 00:00:00 2001 From: Martin Zumsande Date: Thu, 17 Aug 2023 16:18:53 -0400 Subject: [PATCH] rpc: remove one more quote from non-string oneline description This fixes a silent conflict betwen #28123 and #27460 --- src/rpc/mempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/mempool.cpp b/src/rpc/mempool.cpp index b1d2414416e..bda0e7c3486 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{}}, RPCExamples{HelpExampleCli("importmempool", "/path/to/mempool.dat") + HelpExampleRpc("importmempool", "/path/to/mempool.dat")},