aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGavin Andresen <gavinandresen@gmail.com>2013-11-30 14:54:36 +1000
committerWladimir J. van der Laan <laanwj@gmail.com>2013-12-05 09:16:48 +0100
commit22db46cf11cb3cc0d2e73946366bdaeee48a3ff7 (patch)
tree731a32e9b9b832990dfffcc1a28fa136e25afacd
parentbfb08569862b91a75ef8d099ce79ed0797f645cd (diff)
downloadbitcoin-22db46cf11cb3cc0d2e73946366bdaeee48a3ff7.tar.xz
Fix typo: make default maxblocksize 350k (not 300)
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
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 */