mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 14:22:16 +00:00
* first commit finalize rebase add protoc_merkle to Makefile * in progress * fix kvstore * fix tests * remove iavl dependency * fix tx_test * fix test_abci_cli fix test_apps * fix test_apps * fix test_cover * rm rebase residue * address comment in progress * finalize rebase
12 lines
328 B
Go
12 lines
328 B
Go
package client
|
|
|
|
// ABCIQueryOptions can be used to provide options for ABCIQuery call other
|
|
// than the DefaultABCIQueryOptions.
|
|
type ABCIQueryOptions struct {
|
|
Height int64
|
|
Prove bool
|
|
}
|
|
|
|
// DefaultABCIQueryOptions are latest height (0) and prove false.
|
|
var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Prove: false}
|