mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-21 15:50:07 +01:00
Fix typo: make default maxblocksize 350k (not 300)
This commit is contained in:
committed by
Wladimir J. van der Laan
parent
bfb0856986
commit
22db46cf11
@@ -29,7 +29,7 @@ static const unsigned int MAX_BLOCK_SIZE = 1000000;
|
||||
/** Obsolete: maximum size for mined blocks */
|
||||
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
|
||||
/** Default for -blockmaxsize, maximum size for mined blocks **/
|
||||
static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 300000;
|
||||
static const unsigned int DEFAULT_BLOCK_MAX_SIZE = 350000;
|
||||
/** Default for -blockprioritysize, maximum space for zero/low-fee transactions **/
|
||||
static const unsigned int DEFAULT_BLOCK_PRIORITY_SIZE = 30000;
|
||||
/** The maximum size for transactions we're willing to relay/mine */
|
||||
|
||||
Reference in New Issue
Block a user