github.com/pokt-network/tendermint@v0.32.11-0.20230426215212-59310158d3e9/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.Uint64(),
    14  	P2PVersion:   version.P2PProtocol.Uint64(),
    15  }