aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2023-07-22 01:03:18 +0000
committerLuke Dashjr <luke-jr+git@utopios.org>2023-07-22 01:03:18 +0000
commit7c61e9df90579ed42a30016e52355e437733b128 (patch)
treecfdc7bf04ebdf230b47efc7ef66586966511b17d /src/wallet
parentd23fda05842ba4539b225bbab01b94df0060f697 (diff)
Bugfix: RPC: Remove quotes from non-string oneline descriptions
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/rpc/backup.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/rpc/backup.cpp b/src/wallet/rpc/backup.cpp
index af8043f158..f061d581c7 100644
--- a/src/wallet/rpc/backup.cpp
+++ b/src/wallet/rpc/backup.cpp
@@ -1297,12 +1297,12 @@ RPCHelpMan importmulti()
},
},
},
- RPCArgOptions{.oneline_description="\"requests\""}},
+ RPCArgOptions{.oneline_description="requests"}},
{"options", RPCArg::Type::OBJ_NAMED_PARAMS, RPCArg::Optional::OMITTED, "",
{
{"rescan", RPCArg::Type::BOOL, RPCArg::Default{true}, "Scan the chain and mempool for wallet transactions after all imports."},
},
- RPCArgOptions{.oneline_description="\"options\""}},
+ RPCArgOptions{.oneline_description="options"}},
},
RPCResult{
RPCResult::Type::ARR, "", "Response is an array with the same size as the input that has the execution result",
@@ -1617,7 +1617,7 @@ RPCHelpMan importdescriptors()
},
},
},
- RPCArgOptions{.oneline_description="\"requests\""}},
+ RPCArgOptions{.oneline_description="requests"}},
},
RPCResult{
RPCResult::Type::ARR, "", "Response is an array with the same size as the input that has the execution result",