mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 14:52:17 +00:00
correct maxMsgSizeBytes
This commit is contained in:
parent
4f94caa1b9
commit
e57cad6c3f
@ -18,7 +18,8 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
maxMsgSizeBytes = 1024 // 1MB, must be greater than BlockPartSizeBytes
|
// must be greater than params.BlockGossipParams.BlockPartSizeBytes + a few bytes
|
||||||
|
maxMsgSizeBytes = 1024 * 1024 // 1MB
|
||||||
)
|
)
|
||||||
|
|
||||||
//--------------------------------------------------------
|
//--------------------------------------------------------
|
||||||
@ -279,7 +280,7 @@ func (dec *WALDecoder) Decode() (*TimedWALMessage, error) {
|
|||||||
length := binary.BigEndian.Uint32(b)
|
length := binary.BigEndian.Uint32(b)
|
||||||
|
|
||||||
if length > maxMsgSizeBytes {
|
if length > maxMsgSizeBytes {
|
||||||
return nil, DataCorruptionError{fmt.Errorf("length %d exceeded maximum possible value %d", length, maxMsgSizeBytes)}
|
return nil, DataCorruptionError{fmt.Errorf("length %d exceeded maximum possible value of %d bytes", length, maxMsgSizeBytes)}
|
||||||
}
|
}
|
||||||
|
|
||||||
data := make([]byte, length)
|
data := make([]byte, length)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user