Skip to content

Commit 4959ff2

Browse files
committed
Fix formatting of help in sendfrom
1 parent a4430b6 commit 4959ff2

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/wallet/rpcwallet.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -881,19 +881,19 @@ UniValue sendfrom(const JSONRPCRequest& request)
881881
"\nDEPRECATED (use sendtoaddress). Sent an amount from an account to a dash address."
882882
+ HelpRequiringPassphrase() + "\n"
883883
"\nArguments:\n"
884-
"1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n"
884+
"1. \"fromaccount\" (string, required) The name of the account to send funds from. May be the default account using \"\".\n"
885885
" Specifying an account does not influence coin selection, but it does associate the newly created\n"
886886
" transaction with the account, so the account's balance computation and transaction history can reflect\n"
887887
" the spend.\n"
888888
"2. \"toaddress\" (string, required) The dash address to send funds to.\n"
889-
"3. amount (numeric or string, required) The amount in " + CURRENCY_UNIT + " (transaction fee is added on top).\n"
890-
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"
891-
"5. addlockconf (bool, optional, default=false) Whether to add " + std::to_string(nInstantSendDepth) + " confirmations to transactions locked via InstantSend.\n"
892-
"6. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
893-
" This is not part of the transaction, just kept in your wallet.\n"
889+
"3. amount (numeric or string, required) The amount in " + CURRENCY_UNIT + " (transaction fee is added on top).\n"
890+
"4. minconf (numeric, optional, default=1) Only use funds with at least this many confirmations.\n"
891+
"5. addlockconf (bool, optional, default=false) Whether to add " + std::to_string(nInstantSendDepth) + " confirmations to transactions locked via InstantSend.\n"
892+
"6. \"comment\" (string, optional) A comment used to store what the transaction is for. \n"
893+
" This is not part of the transaction, just kept in your wallet.\n"
894894
"7. \"comment_to\" (string, optional) An optional comment to store the name of the person or organization \n"
895-
" to which you're sending the transaction. This is not part of the transaction, \n"
896-
" it is just kept in your wallet.\n"
895+
" to which you're sending the transaction. This is not part of the transaction, \n"
896+
" it is just kept in your wallet.\n"
897897
"\nResult:\n"
898898
"\"txid\" (string) The transaction id.\n"
899899
"\nExamples:\n"

0 commit comments

Comments
 (0)