mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
16 lines
458 B
Go
16 lines
458 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.Version,
|
||
|
BlockVersion: version.BlockProtocol.Uint64(),
|
||
|
P2PVersion: version.P2PProtocol.Uint64(),
|
||
|
}
|