1 // +build !generate
2 3 package rpchelp
4 5 var helpDescsEnUS = map[string]string{
6 // AddMultisigAddressCmd help.
7 "addmultisigaddress--synopsis": "Generates and imports a multisig address and redeeming script to the 'imported' account.",
8 "addmultisigaddress-account": "DEPRECATED -- Unused (all imported addresses belong to the imported account)",
9 "addmultisigaddress-keys": "Pubkeys and/or pay-to-pubkey-hash addresses to partially control the multisig address",
10 "addmultisigaddress-nrequired": "The number of signatures required to redeem outputs paid to this address",
11 "addmultisigaddress--result0": "The imported pay-to-script-hash address",
12 // CreateMultisigCmd help.
13 "createmultisig--synopsis": "Generate a multisig address and redeem script.",
14 "createmultisig-keys": "Pubkeys and/or pay-to-pubkey-hash addresses to partially control the multisig address",
15 "createmultisig-nrequired": "The number of signatures required to redeem outputs paid to this address",
16 // CreateMultisigResult help.
17 "createmultisigresult-address": "The generated pay-to-script-hash address",
18 "createmultisigresult-redeemScript": "The script required to redeem outputs paid to the multisig address",
19 // DumpPrivKeyCmd help.
20 "dumpprivkey--synopsis": "Returns the private key in WIF encoding that controls some wallet address.",
21 "dumpprivkey-address": "The address to return a private key for",
22 "dumpprivkey--result0": "The WIF-encoded private key",
23 // GetAccountCmd help.
24 "getaccount--synopsis": "DEPRECATED -- Lookup the account name that some wallet address belongs to.",
25 "getaccount-address": "The address to query the account for",
26 "getaccount--result0": "The name of the account that 'address' belongs to",
27 // GetAccountAddressCmd help.
28 "getaccountaddress--synopsis": "DEPRECATED -- Returns the most recent external payment address for an account that has not been seen publicly.\n" +
29 "A new address is generated for the account if the most recently generated address has been seen on the blockchain or in mempool.",
30 "getaccountaddress-account": "The account of the returned address",
31 "getaccountaddress--result0": "The unused address for 'account'",
32 // GetAddressesByAccountCmd help.
33 "getaddressesbyaccount--synopsis": "DEPRECATED -- Returns all addresses strings controlled by a single account.",
34 "getaddressesbyaccount-account": "Account name to fetch addresses for",
35 "getaddressesbyaccount--result0": "All addresses controlled by 'account'",
36 // GetBalanceCmd help.
37 "getbalance--synopsis": "Calculates and returns the balance of one or all accounts.",
38 "getbalance-minconf": "Minimum number of block confirmations required before an unspent output's value is included in the balance",
39 "getbalance-account": "DEPRECATED -- The account name to query the balance for, or \"*\" to consider all accounts (default=\"*\")",
40 "getbalance--condition0": "account != \"*\"",
41 "getbalance--condition1": "account = \"*\"",
42 "getbalance--result0": "The balance of 'account' valued in bitcoin",
43 "getbalance--result1": "The balance of all accounts valued in bitcoin",
44 // GetBestBlockHashCmd help.
45 "getbestblockhash--synopsis": "Returns the hash of the newest block in the best chain that wallet has finished syncing with.",
46 "getbestblockhash--result0": "The hash of the most recent synced-to block",
47 // GetBlockCountCmd help.
48 "getblockcount--synopsis": "Returns the blockchain height of the newest block in the best chain that wallet has finished syncing with.",
49 "getblockcount--result0": "The blockchain height of the most recent synced-to block",
50 // GetInfoCmd help.
51 "getinfo--synopsis": "Returns a JSON object containing various state info.",
52 // InfoWalletResult help.
53 "infowalletresult-version": "The version of the server",
54 "infowalletresult-protocolversion": "The latest supported protocol version",
55 "infowalletresult-blocks": "The number of blocks processed",
56 "infowalletresult-timeoffset": "The time offset",
57 "infowalletresult-connections": "The number of connected peers",
58 "infowalletresult-proxy": "The proxy used by the server",
59 "infowalletresult-difficulty": "The current target difficulty",
60 "infowalletresult-testnet": "Whether or not server is using testnet",
61 "infowalletresult-relayfee": "The minimum relay fee for non-free transactions in DUO/KB",
62 "infowalletresult-errors": "Any current errors",
63 "infowalletresult-paytxfee": "The increment used each time more fee is required for an authored transaction",
64 "infowalletresult-balance": "The balance of all accounts calculated with one block confirmation",
65 "infowalletresult-walletversion": "The version of the address manager database",
66 "infowalletresult-unlocked_until": "Unset",
67 "infowalletresult-keypoolsize": "Unset",
68 "infowalletresult-keypoololdest": "Unset",
69 // GetNewAddressCmd help.
70 "getnewaddress--synopsis": "Generates and returns a new payment address.",
71 "getnewaddress-account": "DEPRECATED -- Account name the new address will belong to (default=\"default\")",
72 "getnewaddress--result0": "The payment address",
73 // GetRawChangeAddressCmd help.
74 "getrawchangeaddress--synopsis": "Generates and returns a new internal payment address for use as a change address in raw transactions.",
75 "getrawchangeaddress-account": "Account name the new internal address will belong to (default=\"default\")",
76 "getrawchangeaddress--result0": "The internal payment address",
77 // GetReceivedByAccountCmd help.
78 "getreceivedbyaccount--synopsis": "DEPRECATED -- Returns the total amount received by addresses of some account, including spent outputs.",
79 "getreceivedbyaccount-account": "Account name to query total received amount for",
80 "getreceivedbyaccount-minconf": "Minimum number of block confirmations required before an output's value is included in the total",
81 "getreceivedbyaccount--result0": "The total received amount valued in bitcoin",
82 // GetReceivedByAddressCmd help.
83 "getreceivedbyaddress--synopsis": "Returns the total amount received by a single address, including spent outputs.",
84 "getreceivedbyaddress-address": "Payment address which received outputs to include in total",
85 "getreceivedbyaddress-minconf": "Minimum number of block confirmations required before an output's value is included in the total",
86 "getreceivedbyaddress--result0": "The total received amount valued in bitcoin",
87 // GetTransactionCmd help.
88 "gettransaction--synopsis": "Returns a JSON object with details regarding a transaction relevant to this wallet.",
89 "gettransaction-txid": "Hash of the transaction to query",
90 "gettransaction-includewatchonly": "Also consider transactions involving watched addresses",
91 // HelpCmd help.
92 "help--synopsis": "Returns a list of all commands or help for a specified command.",
93 "help-command": "The command to retrieve help for",
94 "help--condition0": "no command provided",
95 "help--condition1": "command specified",
96 "help--result0": "List of commands",
97 "help--result1": "Help for specified command",
98 // GetTransactionResult help.
99 "gettransactionresult-amount": "The total amount this transaction credits to the wallet, valued in bitcoin",
100 "gettransactionresult-fee": "The total input value minus the total output value, or 0 if 'txid' is not a sent transaction",
101 "gettransactionresult-confirmations": "The number of block confirmations of the transaction",
102 "gettransactionresult-blockhash": "The hash of the block this transaction is mined in, or the empty string if unmined",
103 "gettransactionresult-blockindex": "Unset",
104 "gettransactionresult-blocktime": "The Unix time of the block header this transaction is mined in, or 0 if unmined",
105 "gettransactionresult-txid": "The transaction hash",
106 "gettransactionresult-walletconflicts": "Unset",
107 "gettransactionresult-time": "The earliest Unix time this transaction was known to exist",
108 "gettransactionresult-timereceived": "The earliest Unix time this transaction was known to exist",
109 "gettransactionresult-details": "Additional details for each recorded wallet credit and debit",
110 "gettransactionresult-hex": "The transaction encoded as a hexadecimal string",
111 // GetTransactionDetailsResult help.
112 "gettransactiondetailsresult-account": "DEPRECATED -- Unset",
113 "gettransactiondetailsresult-address": "The address an output was paid to, or the empty string if the output is nonstandard or this detail is regarding a transaction input",
114 "gettransactiondetailsresult-category": `The kind of detail: "send" for sent transactions, "immature" for immature coinbase outputs, "generate" for mature coinbase outputs, or "recv" for all other received outputs`,
115 "gettransactiondetailsresult-amount": "The amount of a received output",
116 "gettransactiondetailsresult-fee": "The included fee for a sent transaction",
117 "gettransactiondetailsresult-vout": "The transaction output index",
118 "gettransactiondetailsresult-involveswatchonly": "Unset",
119 // ImportPrivKeyCmd help.
120 "importprivkey--synopsis": "Imports a WIF-encoded private key to the 'imported' account.",
121 "importprivkey-privkey": "The WIF-encoded private key",
122 "importprivkey-label": "Unused (must be unset or 'imported')",
123 "importprivkey-rescan": "Rescan the blockchain (since the genesis block) for outputs controlled by the imported key",
124 // KeypoolRefillCmd help.
125 "keypoolrefill--synopsis": "DEPRECATED -- This request does nothing since no keypool is maintained.",
126 "keypoolrefill-newsize": "Unused",
127 // ListAccountsCmd help.
128 "listaccounts--synopsis": "DEPRECATED -- Returns a JSON object of all accounts and their balances.",
129 "listaccounts-minconf": "Minimum number of block confirmations required before an unspent output's value is included in the balance",
130 "listaccounts--result0--desc": "JSON object with account names as keys and bitcoin amounts as values",
131 "listaccounts--result0--key": "The account name",
132 "listaccounts--result0--value": "The account balance valued in bitcoin",
133 // ListLockUnspentCmd help.
134 "listlockunspent--synopsis": "Returns a JSON array of outpoints marked as locked (with lockunspent) for this wallet session.",
135 // TransactionInput help.
136 "transactioninput-txid": "The transaction hash of the referenced output",
137 "transactioninput-vout": "The output index of the referenced output",
138 // ListReceivedByAccountCmd help.
139 "listreceivedbyaccount--synopsis": "DEPRECATED -- Returns a JSON array of objects listing all accounts and the total amount received by each account.",
140 "listreceivedbyaccount-minconf": "Minimum number of block confirmations required before a transaction is considered",
141 "listreceivedbyaccount-includeempty": "Unused",
142 "listreceivedbyaccount-includewatchonly": "Unused",
143 // ListReceivedByAccountResult help.
144 "listreceivedbyaccountresult-account": "The name of the account",
145 "listreceivedbyaccountresult-amount": "Total amount received by payment addresses of the account valued in bitcoin",
146 "listreceivedbyaccountresult-confirmations": "Number of block confirmations of the most recent transaction relevant to the account",
147 // ListReceivedByAddressCmd help.
148 "listreceivedbyaddress--synopsis": "Returns a JSON array of objects listing wallet payment addresses and their total received amounts.",
149 "listreceivedbyaddress-minconf": "Minimum number of block confirmations required before a transaction is considered",
150 "listreceivedbyaddress-includeempty": "Unused",
151 "listreceivedbyaddress-includewatchonly": "Unused",
152 // ListReceivedByAddressResult help.
153 "listreceivedbyaddressresult-account": "DEPRECATED -- Unset",
154 "listreceivedbyaddressresult-address": "The payment address",
155 "listreceivedbyaddressresult-amount": "Total amount received by the payment address valued in bitcoin",
156 "listreceivedbyaddressresult-confirmations": "Number of block confirmations of the most recent transaction relevant to the address",
157 "listreceivedbyaddressresult-txids": "Transaction hashes of all transactions involving this address",
158 "listreceivedbyaddressresult-involvesWatchonly": "Unset",
159 // ListSinceBlockCmd help.
160 "listsinceblock--synopsis": "Returns a JSON array of objects listing details of all wallet transactions after some block.",
161 "listsinceblock-blockhash": "Hash of the parent block of the first block to consider transactions from, or unset to list all transactions",
162 "listsinceblock-targetconfirmations": "Minimum number of block confirmations of the last block in the result object. Must be 1 or greater. Note: The transactions array in the result object is not affected by this parameter",
163 "listsinceblock-includewatchonly": "Unused",
164 "listsinceblock--condition0": "blockhash specified",
165 "listsinceblock--condition1": "no blockhash specified",
166 "listsinceblock--result0": "Lists all transactions, including unmined transactions, since the specified block",
167 "listsinceblock--result1": "Lists all transactions since the genesis block",
168 // ListSinceBlockResult help.
169 "listsinceblockresult-transactions": "JSON array of objects containing verbose details of the each transaction",
170 "listsinceblockresult-lastblock": "Hash of the latest-synced block to be used in later calls to listsinceblock",
171 // ListTransactionsResult help.
172 "listtransactionsresult-account": "DEPRECATED -- Unset",
173 "listtransactionsresult-address": "Payment address for a transaction output",
174 "listtransactionsresult-category": `The kind of transaction: "send" for sent transactions, "immature" for immature coinbase outputs, "generate" for mature coinbase outputs, or "recv" for all other received outputs. Note: A single output may be included multiple times under different categories`,
175 "listtransactionsresult-amount": "The value of the transaction output valued in bitcoin",
176 "listtransactionsresult-fee": "The total input value minus the total output value for sent transactions",
177 "listtransactionsresult-confirmations": "The number of block confirmations of the transaction",
178 "listtransactionsresult-generated": "Whether the transaction output is a coinbase output",
179 "listtransactionsresult-blockhash": "The hash of the block this transaction is mined in, or the empty string if unmined",
180 "listtransactionsresult-blockindex": "Unset",
181 "listtransactionsresult-blocktime": "The Unix time of the block header this transaction is mined in, or 0 if unmined",
182 "listtransactionsresult-txid": "The hash of the transaction",
183 "listtransactionsresult-vout": "The transaction output index",
184 "listtransactionsresult-walletconflicts": "Unset",
185 "listtransactionsresult-time": "The earliest Unix time this transaction was known to exist",
186 "listtransactionsresult-timereceived": "The earliest Unix time this transaction was known to exist",
187 "listtransactionsresult-involveswatchonly": "Unset",
188 "listtransactionsresult-comment": "Unset",
189 "listtransactionsresult-otheraccount": "Unset",
190 "listtransactionsresult-trusted": "Unset",
191 "listtransactionsresult-bip125-replaceable": "Unset",
192 "listtransactionsresult-abandoned": "Unset",
193 // ListTransactionsCmd help.
194 "listtransactions--synopsis": "Returns a JSON array of objects containing verbose details for wallet transactions.",
195 "listtransactions-account": "DEPRECATED -- Unused (must be unset or \"*\")",
196 "listtransactions-count": "Maximum number of transactions to create results from",
197 "listtransactions-from": "Number of transactions to skip before results are created",
198 "listtransactions-includewatchonly": "Unused",
199 // ListUnspentCmd help.
200 "listunspent--synopsis": "Returns a JSON array of objects representing unlocked unspent outputs controlled by wallet keys.",
201 "listunspent-minconf": "Minimum number of block confirmations required before a transaction output is considered",
202 "listunspent-maxconf": "Maximum number of block confirmations required before a transaction output is excluded",
203 "listunspent-addresses": "If set, limits the returned details to unspent outputs received by any of these payment addresses",
204 // ListUnspentResult help.
205 "listunspentresult-txid": "The transaction hash of the referenced output",
206 "listunspentresult-vout": "The output index of the referenced output",
207 "listunspentresult-address": "The payment address that received the output",
208 "listunspentresult-account": "The account associated with the receiving payment address",
209 "listunspentresult-scriptPubKey": "The output script encoded as a hexadecimal string",
210 "listunspentresult-redeemScript": "Unset",
211 "listunspentresult-amount": "The amount of the output valued in bitcoin",
212 "listunspentresult-confirmations": "The number of block confirmations of the transaction",
213 "listunspentresult-spendable": "Whether the output is entirely controlled by wallet keys/scripts (false for partially controlled multisig outputs or outputs to watch-only addresses)",
214 // LockUnspentCmd help.
215 "lockunspent--synopsis": "Locks or unlocks an unspent output.\n" +
216 "Locked outputs are not chosen for transaction inputs of authored transactions and are not included in 'listunspent' results.\n" +
217 "Locked outputs are volatile and are not saved across wallet restarts.\n" +
218 "If unlock is true and no transaction outputs are specified, all locked outputs are marked unlocked.",
219 "lockunspent-unlock": "True to unlock outputs, false to lock",
220 "lockunspent-transactions": "Transaction outputs to lock or unlock",
221 "lockunspent--result0": "The boolean 'true'",
222 // SendFromCmd help.
223 "sendfrom--synopsis": "DEPRECATED -- Authors, signs, and sends a transaction that outputs some amount to a payment address.\n" +
224 "A change output is automatically included to send extra output value back to the original account.",
225 "sendfrom-fromaccount": "Account to pick unspent outputs from",
226 "sendfrom-toaddress": "Address to pay",
227 "sendfrom-amount": "Amount to send to the payment address valued in bitcoin",
228 "sendfrom-minconf": "Minimum number of block confirmations required before a transaction output is eligible to be spent",
229 "sendfrom-comment": "Unused",
230 "sendfrom-commentto": "Unused",
231 "sendfrom--result0": "The transaction hash of the sent transaction",
232 // SendManyCmd help.
233 "sendmany--synopsis": "Authors, signs, and sends a transaction that outputs to many payment addresses.\n" +
234 "A change output is automatically included to send extra output value back to the original account.",
235 "sendmany-fromaccount": "DEPRECATED -- Account to pick unspent outputs from",
236 "sendmany-amounts": "Pairs of payment addresses and the output amount to pay each",
237 "sendmany-amounts--desc": "JSON object using payment addresses as keys and output amounts valued in bitcoin to send to each address",
238 "sendmany-amounts--key": "Address to pay",
239 "sendmany-amounts--value": "Amount to send to the payment address valued in bitcoin",
240 "sendmany-minconf": "Minimum number of block confirmations required before a transaction output is eligible to be spent",
241 "sendmany-comment": "Unused",
242 "sendmany--result0": "The transaction hash of the sent transaction",
243 // SendToAddressCmd help.
244 "sendtoaddress--synopsis": "Authors, signs, and sends a transaction that outputs some amount to a payment address.\n" +
245 "Unlike sendfrom, outputs are always chosen from the default account.\n" +
246 "A change output is automatically included to send extra output value back to the original account.",
247 "sendtoaddress-address": "Address to pay",
248 "sendtoaddress-amount": "Amount to send to the payment address valued in bitcoin",
249 "sendtoaddress-comment": "Unused",
250 "sendtoaddress-commentto": "Unused",
251 "sendtoaddress--result0": "The transaction hash of the sent transaction",
252 // SetTxFeeCmd help.
253 "settxfee--synopsis": "Modify the increment used each time more fee is required for an authored transaction.",
254 "settxfee-amount": "The new fee increment valued in bitcoin",
255 "settxfee--result0": "The boolean 'true'",
256 // SignMessageCmd help.
257 "signmessage--synopsis": "Signs a message using the private key of a payment address.",
258 "signmessage-address": "Payment address of private key used to sign the message with",
259 "signmessage-message": "Message to sign",
260 "signmessage--result0": "The signed message encoded as a base64 string",
261 // SignRawTransactionCmd help.
262 "signrawtransaction--synopsis": "Signs transaction inputs using private keys from this wallet and request.\n" +
263 "The valid flags options are ALL, NONE, SINGLE, ALL|ANYONECANPAY, NONE|ANYONECANPAY, and SINGLE|ANYONECANPAY.",
264 "signrawtransaction-rawtx": "Unsigned or partially unsigned transaction to sign encoded as a hexadecimal string",
265 "signrawtransaction-inputs": "Additional data regarding inputs that this wallet may not be tracking",
266 "signrawtransaction-privkeys": "Additional WIF-encoded private keys to use when creating signatures",
267 "signrawtransaction-flags": "Sighash flags",
268 // SignRawTransactionResult help.
269 "signrawtransactionresult-hex": "The resulting transaction encoded as a hexadecimal string",
270 "signrawtransactionresult-complete": "Whether all input signatures have been created",
271 "signrawtransactionresult-errors": "Script verification errors (if exists)",
272 // SignRawTransactionError help.
273 "signrawtransactionerror-error": "Verification or signing error related to the input",
274 "signrawtransactionerror-sequence": "Script sequence number",
275 "signrawtransactionerror-scriptSig": "The hex-encoded signature script",
276 "signrawtransactionerror-txid": "The transaction hash of the referenced previous output",
277 "signrawtransactionerror-vout": "The output index of the referenced previous output",
278 // ValidateAddressCmd help.
279 "validateaddress--synopsis": "Verify that an address is valid.\n" +
280 "Extra details are returned if the address is controlled by this wallet.\n" +
281 "The following fields are valid only when the address is controlled by this wallet (ismine=true): isscript, pubkey, iscompressed, account, addresses, hex, script, and sigsrequired.\n" +
282 "The following fields are only valid when address has an associated public key: pubkey, iscompressed.\n" +
283 "The following fields are only valid when address is a pay-to-script-hash address: addresses, hex, and script.\n" +
284 "If the address is a multisig address controlled by this wallet, the multisig fields will be left unset if the wallet is locked since the redeem script cannot be decrypted.",
285 "validateaddress-address": "Address to validate",
286 // ValidateAddressWalletResult help.
287 "validateaddresswalletresult-isvalid": "Whether or not the address is valid",
288 "validateaddresswalletresult-address": "The payment address (only when isvalid is true)",
289 "validateaddresswalletresult-ismine": "Whether this address is controlled by the wallet (only when isvalid is true)",
290 "validateaddresswalletresult-iswatchonly": "Unset",
291 "validateaddresswalletresult-isscript": "Whether the payment address is a pay-to-script-hash address (only when isvalid is true)",
292 "validateaddresswalletresult-pubkey": "The associated public key of the payment address, if any (only when isvalid is true)",
293 "validateaddresswalletresult-iscompressed": "Whether the address was created by hashing a compressed public key, if any (only when isvalid is true)",
294 "validateaddresswalletresult-account": "The account this payment address belongs to (only when isvalid is true)",
295 "validateaddresswalletresult-addresses": "All associated payment addresses of the script if address is a multisig address (only when isvalid is true)",
296 "validateaddresswalletresult-hex": "The redeem script ",
297 "validateaddresswalletresult-script": "The class of redeem script for a multisig address",
298 "validateaddresswalletresult-sigsrequired": "The number of required signatures to redeem outputs to the multisig address",
299 // VerifyMessageCmd help.
300 "verifymessage--synopsis": "Verify a message was signed with the associated private key of some address.",
301 "verifymessage-address": "Address used to sign message",
302 "verifymessage-signature": "The signature to verify",
303 "verifymessage-message": "The message to verify",
304 "verifymessage--result0": "Whether the message was signed with the private key of 'address'",
305 // WalletLockCmd help.
306 "walletlock--synopsis": "Lock the wallet.",
307 // WalletPassphraseCmd help.
308 "walletpassphrase--synopsis": "Unlock the wallet.",
309 "walletpassphrase-passphrase": "The wallet passphrase",
310 "walletpassphrase-timeout": "The number of seconds to wait before the wallet automatically locks",
311 // WalletPassphraseChangeCmd help.
312 "walletpassphrasechange--synopsis": "Change the wallet passphrase.",
313 "walletpassphrasechange-oldpassphrase": "The old wallet passphrase",
314 "walletpassphrasechange-newpassphrase": "The new wallet passphrase",
315 // CreateNewAccountCmd help.
316 "createnewaccount--synopsis": "Creates a new account.\n" +
317 "The wallet must be unlocked for this request to succeed.",
318 "createnewaccount-account": "Name of the new account",
319 // ExportWatchingWalletCmd help.
320 "exportwatchingwallet--synopsis": "Creates and returns a duplicate of the wallet database without any private keys to be used as a watching-only wallet.",
321 "exportwatchingwallet-account": "Unused (must be unset or \"*\")",
322 "exportwatchingwallet-download": "Unused",
323 "exportwatchingwallet--result0": "The watching-only database encoded as a base64 string",
324 // GetBestBlockCmd help.
325 "getbestblock--synopsis": "Returns the hash and height of the newest block in the best chain that wallet has finished syncing with.",
326 // GetBestBlockResult help.
327 "getbestblockresult-hash": "The hash of the block",
328 "getbestblockresult-height": "The blockchain height of the block",
329 // GetUnconfirmedBalanceCmd help.
330 "getunconfirmedbalance--synopsis": "Calculates the unspent output value of all unmined transaction outputs for an account.",
331 "getunconfirmedbalance-account": "The account to query the unconfirmed balance for (default=\"default\")",
332 "getunconfirmedbalance--result0": "Total amount of all unmined unspent outputs of the account valued in bitcoin.",
333 // ListAddressTransactionsCmd help.
334 "listaddresstransactions--synopsis": "Returns a JSON array of objects containing verbose details for wallet transactions pertaining some addresses.",
335 "listaddresstransactions-addresses": "Addresses to filter transaction results by",
336 "listaddresstransactions-account": "Unused (must be unset or \"*\")",
337 // ListAllTransactionsCmd help.
338 "listalltransactions--synopsis": "Returns a JSON array of objects in the same format as 'listtransactions' without limiting the number of returned objects.",
339 "listalltransactions-account": "Unused (must be unset or \"*\")",
340 // RenameAccountCmd help.
341 "renameaccount--synopsis": "Renames an account.",
342 "renameaccount-oldaccount": "The old account name to rename",
343 "renameaccount-newaccount": "The new name for the account",
344 // WalletIsLockedCmd help.
345 "walletislocked--synopsis": "Returns whether or not the wallet is locked.",
346 "walletislocked--result0": "Whether the wallet is locked",
347 }
348