Files
tendermint/blockchain/msgs.go
2021-01-18 16:35:11 -05:00

13 lines
282 B
Go

package blockchain
import (
bcproto "github.com/tendermint/tendermint/proto/tendermint/blockchain"
"github.com/tendermint/tendermint/types"
)
const (
MaxMsgSize = types.MaxBlockSizeBytes +
bcproto.BlockResponseMessagePrefixSize +
bcproto.BlockResponseMessageFieldKeySize
)