github.com/adoriasoft/tendermint@v0.34.0-dev1.0.20200722151356-96d84601a75a/proxy/version.go (about)

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