Skip to content

Commit 4002ec9

Browse files
committed
[RPC][Doc] Fix RPC/cli example in setautocombinethreshold help
Missing first argument (bolean, required, "enable").
1 parent e48018e commit 4002ec9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4519,7 +4519,7 @@ UniValue setautocombinethreshold(const JSONRPCRequest& request)
45194519
"}\n"
45204520

45214521
"\nExamples:\n" +
4522-
HelpExampleCli("setautocombinethreshold", "500.12") + HelpExampleRpc("setautocombinethreshold", "500.12"));
4522+
HelpExampleCli("setautocombinethreshold", "true 500.12") + HelpExampleRpc("setautocombinethreshold", "true, 500.12"));
45234523

45244524
RPCTypeCheck(request.params, {UniValue::VBOOL, UniValue::VNUM});
45254525

0 commit comments

Comments
 (0)