From 2d98899b9b57817b892ff1c9f2643e0b2850cadc Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Sun, 1 Jul 2018 09:44:12 +0400 Subject: [PATCH] set MaxTxs to 10000 (the same that was used in the config before) --- types/params.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/params.go b/types/params.go index 6cbac47a6..0654d07b9 100644 --- a/types/params.go +++ b/types/params.go @@ -57,7 +57,7 @@ func DefaultConsensusParams() *ConsensusParams { func DefaultBlockSize() BlockSize { return BlockSize{ MaxBytes: 22020096, // 21MB - MaxTxs: 100000, + MaxTxs: 10000, MaxGas: -1, } }