set MaxTxs to 10000 (the same that was used in the config before)

This commit is contained in:
Anton Kaliaev
2018-07-01 09:44:12 +04:00
parent 399e2fbdac
commit 2d98899b9b
+1 -1
View File
@@ -57,7 +57,7 @@ func DefaultConsensusParams() *ConsensusParams {
func DefaultBlockSize() BlockSize {
return BlockSize{
MaxBytes: 22020096, // 21MB
MaxTxs: 100000,
MaxTxs: 10000,
MaxGas: -1,
}
}