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.

24 lines
550 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. package version
  2. var (
  3. // TMCoreSemVer is the current version of Tendermint Core.
  4. // It's the Semantic Version of the software.
  5. TMCoreSemVer string
  6. )
  7. const (
  8. // ABCISemVer is the semantic version of the ABCI library
  9. ABCISemVer = "0.17.0"
  10. ABCIVersion = ABCISemVer
  11. )
  12. var (
  13. // P2PProtocol versions all p2p behaviour and msgs.
  14. // This includes proposer selection.
  15. P2PProtocol uint64 = 8
  16. // BlockProtocol versions all block data structures and processing.
  17. // This includes validity of blocks and state updates.
  18. BlockProtocol uint64 = 11
  19. )