Skip to content

Commit 51db288

Browse files
committed
Only use one set of parentheses for optional arguments
1 parent b38077a commit 51db288

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1677,7 +1677,7 @@ UniValue shieldsendmany(const JSONRPCRequest& request)
16771677
{
16781678
if (request.fHelp || request.params.size() < 2 || request.params.size() > 4)
16791679
throw std::runtime_error(
1680-
"shieldsendmany \"fromaddress\" [{\"address\":... ,\"amount\":...},...] ( minconf ) ( fee )\n"
1680+
"shieldsendmany \"fromaddress\" [{\"address\":... ,\"amount\":...},...] ( minconf fee )\n"
16811681
"\nSend to many recipients. Amounts are decimal numbers with at most 8 digits of precision."
16821682
"\nChange generated from a transparent addr flows to a new transparent addr address, while change generated from a shield addr returns to itself."
16831683
"\nWhen sending coinbase UTXOs to a shield addr, change is not allowed. The entire value of the UTXO(s) must be consumed."
@@ -1719,7 +1719,7 @@ UniValue rawshieldsendmany(const JSONRPCRequest& request)
17191719
{
17201720
if (request.fHelp || request.params.size() < 2 || request.params.size() > 4)
17211721
throw std::runtime_error(
1722-
"rawshieldsendmany \"fromaddress\" [{\"address\":... ,\"amount\":...},...] ( minconf ) ( fee )\n"
1722+
"rawshieldsendmany \"fromaddress\" [{\"address\":... ,\"amount\":...},...] ( minconf fee )\n"
17231723
"\nCreates a transaction sending to many recipients (without committing it), and returns the hex string."
17241724
"\nAmounts are decimal numbers with at most 8 digits of precision."
17251725
"\nChange generated from a transparent addr flows to a new transparent addr address, while change generated from a shield addr returns to itself."

0 commit comments

Comments
 (0)