mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-04 04:04:00 +00:00
## Description Add version back to versions, but allow it to be overridden via a ldflag. Reason: Many users are not setting the ldflag causing issues with tooling that relies on it (cosmjs) closes #6488 cc @webmaster128
17 lines
478 B
Go
17 lines
478 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.TMVersion,
|
|
BlockVersion: version.BlockProtocol,
|
|
P2PVersion: version.P2PProtocol,
|
|
AbciVersion: version.ABCIVersion,
|
|
}
|