mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-06 21:36:26 +00:00
13 lines
280 B
Go
13 lines
280 B
Go
package blocksync
|
|
|
|
import (
|
|
bcproto "github.com/tendermint/tendermint/proto/tendermint/blocksync"
|
|
"github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
const (
|
|
MaxMsgSize = types.MaxBlockSizeBytes +
|
|
bcproto.BlockResponseMessagePrefixSize +
|
|
bcproto.BlockResponseMessageFieldKeySize
|
|
)
|