1
0
mirror of https://github.com/fluencelabs/tendermint synced 2025-07-05 23:51:41 +00:00
Files
.circleci
.github
DOCKER
benchmarks
blockchain
cmd
config
consensus
docs
evidence
libs
lite
mempool
networks
node
p2p
privval
proxy
rpc
client
mock
event_test.go
helpers.go
helpers_test.go
httpclient.go
interface.go
localclient.go
main_test.go
rpc_test.go
types.go
core
grpc
lib
test
scripts
state
test
types
version
.editorconfig
.gitignore
CHANGELOG.md
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Gopkg.lock
Gopkg.toml
LICENSE
Makefile
README.md
ROADMAP.md
SECURITY.md
Vagrantfile
appveyor.yml
codecov.yml
docker-compose.yml
tendermint/rpc/client/types.go

13 lines
392 B
Go
Raw Normal View History

package client
// ABCIQueryOptions can be used to provide options for ABCIQuery call other
// than the DefaultABCIQueryOptions.
type ABCIQueryOptions struct {
2017-12-02 01:47:55 -05:00
Height int64
2017-10-11 16:50:11 +04:00
Trusted bool
}
2017-10-13 15:02:49 +04:00
// DefaultABCIQueryOptions are latest height (0) and trusted equal to false
// (which will result in a proof being returned).
2017-10-11 16:50:11 +04:00
var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Trusted: false}