mirror of
https://github.com/tendermint/tendermint.git
synced 2026-09-06 16:17:11 +00:00
fixes after Ethan's review
This commit is contained in:
committed by
Jack Zampolin
parent
b5cad43b26
commit
7ec2dff6fd
+1
-1
@@ -16,7 +16,7 @@ const (
|
||||
BlockPartSizeBytes = 65536 // 64kB
|
||||
|
||||
// MaxBlockPartsCount is the maximum count of block parts.
|
||||
MaxBlockPartsCount = MaxBlockSizeBytes / BlockPartSizeBytes
|
||||
MaxBlockPartsCount = (MaxBlockSizeBytes / BlockPartSizeBytes) + 1
|
||||
)
|
||||
|
||||
// ConsensusParams contains consensus critical parameters that determine the
|
||||
|
||||
Reference in New Issue
Block a user