Revision e08b3ca94e0f66b99f89235364aef6db417ea1e2 authored by William Banfield on 20 August 2021, 19:10:09 UTC, committed by William Banfield on 20 August 2021, 19:10:09 UTC
1 parent bc08145
Raw File
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.TMVersion,
	BlockVersion: version.BlockProtocol,
	P2PVersion:   version.P2PProtocol,
	AbciVersion:  version.ABCIVersion,
}
back to top