mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-24 10:11:48 +00:00
.circleci
.github
DOCKER
abci
behaviour
benchmarks
blockchain
cmd
config
consensus
crypto
docs
evidence
libs
lite
mempool
mock
networks
node
p2p
privval
proxy
app_conn.go
app_conn_test.go
client.go
multi_app_conn.go
version.go
rpc
scripts
state
test
tools
types
version
.editorconfig
.gitignore
.golangci.yml
CHANGELOG.md
CHANGELOG_PENDING.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
Makefile
PHILOSOPHY.md
README.md
ROADMAP.md
SECURITY.md
UPGRADING.md
Vagrantfile
appveyor.yml
codecov.yml
docker-compose.yml
go.mod
go.sum
* abci: update RequestInfo for versions * abci: update ResponseInfo for versions * compile fix * fix test * software_version -> version * comment fix * update spec * add test * comments and fix test
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(),
|
|
}
|