mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 03:35:19 +00:00
24 lines
778 B
Go
24 lines
778 B
Go
package version
|
|
|
|
const (
|
|
// TMVersionDefault is the used as the fallback version of Tendermint Core
|
|
// when not using git describe. It is formatted with semantic versioning.
|
|
TMCoreSemVer = "0.38.0-dev"
|
|
// ABCISemVer is the semantic version of the ABCI protocol
|
|
ABCISemVer = "1.0.0"
|
|
ABCIVersion = ABCISemVer
|
|
// P2PProtocol versions all p2p behavior and msgs.
|
|
// This includes proposer selection.
|
|
P2PProtocol uint64 = 8
|
|
|
|
// BlockProtocol versions all block data structures and processing.
|
|
// This includes validity of blocks and state updates.
|
|
BlockProtocol uint64 = 11
|
|
)
|
|
|
|
var (
|
|
// TMGitCommitHash uses git rev-parse HEAD to find commit hash which is helpful
|
|
// for the engineering team when working with the tendermint binary. See Makefile
|
|
TMGitCommitHash = ""
|
|
)
|