You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
636 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. package version
  2. var (
  3. TMCoreSemVer = TMVersionDefault
  4. )
  5. const (
  6. // TMVersionDefault is the used as the fallback version of Tendermint Core
  7. // when not using git describe. It is formatted with semantic versioning.
  8. TMVersionDefault = "0.34.12"
  9. // ABCISemVer is the semantic version of the ABCI library
  10. ABCISemVer = "0.17.0"
  11. ABCIVersion = ABCISemVer
  12. )
  13. var (
  14. // P2PProtocol versions all p2p behaviour and msgs.
  15. // This includes proposer selection.
  16. P2PProtocol uint64 = 8
  17. // BlockProtocol versions all block data structures and processing.
  18. // This includes validity of blocks and state updates.
  19. BlockProtocol uint64 = 11
  20. )