From 22db46cf11cb3cc0d2e73946366bdaeee48a3ff7 Mon Sep 17 00:00:00 2001 From: Gavin Andresen Date: Sat, 30 Nov 2013 14:54:36 +1000 Subject: Fix typo: make default maxblocksize 350k (not 300) --- src/main.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.h b/src/main.h index 2fc683cd6d..6665e5af02 100644 --- a/src/main.h +++ b/src/main.h @@ -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 */ -- cgit v1.2.3