bitbucket.org/number571/tendermint@v0.8.14/proxy/version.go (about)

     1  package proxy
     2  
     3  import (
     4  	abci "bitbucket.org/number571/tendermint/abci/types"
     5  	"bitbucket.org/number571/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.TMVersion,
    13  	BlockVersion: version.BlockProtocol,
    14  	P2PVersion:   version.P2PProtocol,
    15  	AbciVersion:  version.ABCIVersion,
    16  }