https://github.com/tendermint/tendermint
Raw File
Tip revision: bb9ee2ca2818a687ef7860ff3b893865ad65c49c authored by Anton Kaliaev on 29 July 2019, 13:58:58 UTC
bump version and update changelog
Tip revision: bb9ee2c
version.go
package proxy

import (
	abci "github.com/tendermint/tendermint/abci/types"
	"github.com/tendermint/tendermint/version"
)

// RequestInfo contains all the information for sending
// the abci.RequestInfo message during handshake with the app.
// It contains only compile-time version information.
var RequestInfo = abci.RequestInfo{
	Version:      version.Version,
	BlockVersion: version.BlockProtocol.Uint64(),
	P2PVersion:   version.P2PProtocol.Uint64(),
}
back to top