mirror of
https://github.com/tendermint/tendermint.git
synced 2025-12-23 14:25:19 +00:00
Co-authored-by: Erik Grinaker <erik@interchain.berlin> Co-authored-by: Alessio Treglia <alessio@tendermint.com>
16 lines
445 B
Go
16 lines
445 B
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.TMCoreSemVer,
|
|
BlockVersion: version.BlockProtocol,
|
|
P2PVersion: version.P2PProtocol,
|
|
}
|