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.

15 lines
458 B

  1. package proxy
  2. import (
  3. abci "github.com/tendermint/tendermint/abci/types"
  4. "github.com/tendermint/tendermint/version"
  5. )
  6. // RequestInfo contains all the information for sending
  7. // the abci.RequestInfo message during handshake with the app.
  8. // It contains only compile-time version information.
  9. var RequestInfo = abci.RequestInfo{
  10. Version: version.Version,
  11. BlockVersion: version.BlockProtocol.Uint64(),
  12. P2PVersion: version.P2PProtocol.Uint64(),
  13. }