mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-03 19:53:58 +00:00
* [cherrypicked] version: add abci version to handshake (#5706) - add `AbciVersion` RequestInfo Closes: #2804 * make proto-gen * Bump ABCI version: Prepare and Process proposal Co-authored-by: Marko <marbar3778@yahoo.com>
17 lines
481 B
Go
17 lines
481 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,
|
|
AbciVersion: version.ABCIVersion,
|
|
}
|