File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
#include " addrman.h"
13
13
#include " db.h"
14
- #include " rpcserver.h"
15
14
#include " checkpoints.h"
15
+ #include " main.h"
16
16
#include " miner.h"
17
17
#include " net.h"
18
+ #include " rpcserver.h"
18
19
#include " txdb.h"
19
20
#include " ui_interface.h"
20
21
#include " util.h"
@@ -282,8 +283,8 @@ std::string HelpMessage(HelpMessageMode hmm)
282
283
283
284
strUsage += " \n " + _ (" Block creation options:" ) + " \n " ;
284
285
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 " ;
286
+ strUsage += " -blockmaxsize=<n> " + strprintf ( _ (" Set maximum block size in bytes (default: %d) " ), DEFAULT_BLOCK_MAX_SIZE ) + " \n " ;
287
+ strUsage += " -blockprioritysize=<n> " + strprintf ( _ (" Set maximum size of high-priority/low-fee transactions in bytes (default: %d) " ), DEFAULT_BLOCK_PRIORITY_SIZE ) + " \n " ;
287
288
288
289
strUsage += " \n " + _ (" SSL options: (see the Bitcoin Wiki for SSL setup instructions)" ) + " \n " ;
289
290
strUsage += " -rpcssl " + _ (" Use OpenSSL (https) for JSON-RPC connections" ) + " \n " ;
You can’t perform that action at this time.
0 commit comments