@@ -199,9 +199,9 @@ std::string HelpMessage(HelpMessageMode hmm)
199
199
strUsage += " -wallet=<file> " + _ (" Specify wallet file (within data directory)" ) + " \n " ;
200
200
strUsage += " -dbcache=<n> " + _ (" Set database cache size in megabytes (default: 25)" ) + " \n " ;
201
201
strUsage += " -timeout=<n> " + _ (" Specify connection timeout in milliseconds (default: 5000)" ) + " \n " ;
202
- strUsage += " -proxy=<ip:port> " + _ (" Connect through socks proxy" ) + " \n " ;
203
- strUsage += " -socks=<n> " + _ (" Select the version of socks proxy to use (4- 5, default: 5)" ) + " \n " ;
204
- strUsage += " -onion=<ip:port> " + _ (" Use proxy to reach tor hidden services (default: same as -proxy)" ) + " \n " ;
202
+ strUsage += " -proxy=<ip:port> " + _ (" Connect through SOCKS proxy" ) + " \n " ;
203
+ strUsage += " -socks=<n> " + _ (" Select SOCKS version for - proxy (4 or 5, default: 5)" ) + " \n " ;
204
+ strUsage += " -onion=<ip:port> " + _ (" Use separate SOCKS5 proxy to reach peers via Tor hidden services (default: -proxy)" ) + " \n " ;
205
205
strUsage += " -dns " + _ (" Allow DNS lookups for -addnode, -seednode and -connect" ) + " \n " ;
206
206
strUsage += " -port=<port> " + _ (" Listen for connections on <port> (default: 8333 or testnet: 18333)" ) + " \n " ;
207
207
strUsage += " -maxconnections=<n> " + _ (" Maintain at most <n> connections to peers (default: 125)" ) + " \n " ;
@@ -226,7 +226,7 @@ std::string HelpMessage(HelpMessageMode hmm)
226
226
strUsage += " -upnp " + _ (" Use UPnP to map the listening port (default: 0)" ) + " \n " ;
227
227
#endif
228
228
#endif
229
- strUsage += " -paytxfee=<amt> " + _ (" Fee per KB to add to transactions you send" ) + " \n " ;
229
+ strUsage += " -paytxfee=<amt> " + _ (" Fee per kB to add to transactions you send" ) + " \n " ;
230
230
strUsage += " -debug=<category> " + _ (" Output debugging information (default: 0, supplying <category> is optional)" ) + " \n " ;
231
231
strUsage += _ (" If <category> is not supplied, output all debugging information." ) + " \n " ;
232
232
strUsage += _ (" <category> can be:" );
@@ -243,7 +243,7 @@ std::string HelpMessage(HelpMessageMode hmm)
243
243
strUsage += " -shrinkdebugfile " + _ (" Shrink debug.log file on client startup (default: 1 when no -debug)" ) + " \n " ;
244
244
strUsage += " -printtoconsole " + _ (" Send trace/debug info to console instead of debug.log file" ) + " \n " ;
245
245
strUsage += " -regtest " + _ (" Enter regression test mode, which uses a special chain in which blocks can be "
246
- " solved instantly. This is intended for regression testing tools and app development." ) + " \n " ;
246
+ " solved instantly. This is intended for regression testing tools and app development." ) + " \n " ;
247
247
#ifdef WIN32
248
248
strUsage += " -printtodebugger " + _ (" Send trace/debug info to debugger" ) + " \n " ;
249
249
#endif
@@ -281,9 +281,9 @@ std::string HelpMessage(HelpMessageMode hmm)
281
281
strUsage += " -par=<n> " + _ (" Set the number of script verification threads (up to 16, 0 = auto, <0 = leave that many cores free, default: 0)" ) + " \n " ;
282
282
283
283
strUsage += " \n " + _ (" Block creation options:" ) + " \n " ;
284
- strUsage += " -blockminsize=<n> " + _ (" Set minimum block size in bytes (default: 0)" ) + " \n " ;
285
- strUsage += " -blockmaxsize=<n> " + _ (" Set maximum block size in bytes (default: 250000)" ) + " \n " ;
286
- strUsage += " -blockprioritysize=<n> " + _ (" Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)" ) + " \n " ;
284
+ strUsage += " -blockminsize=<n> " + _ (" Set minimum block size in bytes (default: 0)" ) + " \n " ;
285
+ strUsage += " -blockmaxsize=<n> " + _ (" Set maximum block size in bytes (default: 250000)" ) + " \n " ;
286
+ strUsage += " -blockprioritysize=<n> " + _ (" Set maximum size of high-priority/low-fee transactions in bytes (default: 27000)" ) + " \n " ;
287
287
288
288
strUsage += " \n " + _ (" SSL options: (see the Bitcoin Wiki for SSL setup instructions)" ) + " \n " ;
289
289
strUsage += " -rpcssl " + _ (" Use OpenSSL (https) for JSON-RPC connections" ) + " \n " ;
0 commit comments