You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
strUsage += " -alertnotify=<cmd> " + _("Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message)") + "\n";
194
+
strUsage += " -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n";
195
+
strUsage += " -checkblocks=<n> " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n";
196
+
strUsage += " -checklevel=<n> " + _("How thorough the block verification of -checkblocks is (0-4, default: 3)") + "\n";
strUsage += " -par=<n> " + _("Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0)") + "\n";
strUsage += " -limitfreerelay=<n> " + _("Continuously rate-limit free transactions to <n>*1000 bytes per minute (default:15)") + "\n";
281
+
strUsage += " -maxsigcachesize=<n> " + _("Limit size of signature cache to <n> entries (default: 50000)") + "\n";
234
282
}
235
-
else
283
+
strUsage += " -mintxfee=<amt> " + _("Fees smaller than this are considered zero fee (for transaction creation) (default:") + "" + FormatMoney(CTransaction::nMinTxFee) + ")" + "\n";
284
+
strUsage += " -minrelaytxfee=<amt> " + _("Fees smaller than this are considered zero fee (for relaying) (default:") + "" + FormatMoney(CTransaction::nMinRelayTxFee) + ")" + "\n";
285
+
strUsage += " -printtoconsole " + _("Send trace/debug info to console instead of debug.log file") + "\n";
286
+
if (GetBoolArg("-help-debug", false))
236
287
{
237
-
strUsage += ".\n";
288
+
strUsage += " -printblock=<hash> " + _("Print block on startup, if found in block index") + "\n";
289
+
strUsage += " -printblocktree " + _("Print block tree on startup (default: 0)") + "\n";
290
+
strUsage += " -printpriority " + _("Log transaction priority and fee per kB when mining blocks (default: 0)") + "\n";
291
+
strUsage += " -privdb " + _("Sets the DB_PRIVATE flag in the wallet db environment (default: 1)") + "\n";
292
+
strUsage += " -regtest " + _("Enter regression test mode, which uses a special chain in which blocks can be solved instantly.") + "\n";
293
+
strUsage += "" + _("This is intended for regression testing tools and app development.") + "\n";
294
+
strUsage += "" + _("In this mode -genproclimit controls how many blocks are generated immediately.") + "\n";
strUsage += " -rpcport=<port> " + _("Listen for JSON-RPC connections on <port> (default: 8332 or testnet: 18332)") + "\n";
256
309
strUsage += " -rpcallowip=<ip> " + _("Allow JSON-RPC connections from specified IP address") + "\n";
257
310
strUsage += " -rpcthreads=<n> " + _("Set the number of threads to service RPC calls (default: 4)") + "\n";
258
-
strUsage += " -blocknotify=<cmd> " + _("Execute command when the best block changes (%s in cmd is replaced by block hash)") + "\n";
259
-
strUsage += " -alertnotify=<cmd> " + _("Execute command when a relevant alert is received or we see a really long fork (%s in cmd is replaced by message)") + "\n";
260
-
strUsage += " -keypool=<n> " + _("Set key pool size to <n> (default: 100)") + "\n";
261
-
strUsage += " -checkblocks=<n> " + _("How many blocks to check at startup (default: 288, 0 = all)") + "\n";
262
-
strUsage += " -checklevel=<n> " + _("How thorough the block verification is (0-4, default: 3)") + "\n";
263
-
strUsage += " -txindex " + _("Maintain a full transaction index (default: 0)") + "\n";
strUsage += " -reindex " + _("Rebuild block chain index from current blk000??.dat files") + "\n";
266
-
strUsage += " -par=<n> " + _("Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0)") + "\n";
267
-
#ifdef ENABLE_WALLET
268
-
strUsage += "\n" + _("Wallet options:") + "\n";
269
-
strUsage += " -disablewallet " + _("Do not load the wallet and disable wallet RPC calls") + "\n";
270
-
strUsage += " -paytxfee=<amt> " + _("Fee per kB to add to transactions you send") + "\n";
271
-
strUsage += " -rescan " + _("Rescan the block chain for missing wallet transactions") + "\n";
272
-
strUsage += " -zapwallettxes " + _("Clear list of wallet transactions (diagnostic tool; implies -rescan)") + "\n";
273
-
strUsage += " -salvagewallet " + _("Attempt to recover private keys from a corrupt wallet.dat") + "\n";
0 commit comments