mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-06 10:01:19 +00:00
13 lines
392 B
Go
13 lines
392 B
Go
|
package client
|
||
|
|
||
|
// ABCIQueryOptions can be used to provide options for ABCIQuery call other
|
||
|
// than the DefaultABCIQueryOptions.
|
||
|
type ABCIQueryOptions struct {
|
||
|
Height int64
|
||
|
Trusted bool
|
||
|
}
|
||
|
|
||
|
// DefaultABCIQueryOptions are latest height (0) and trusted equal to false
|
||
|
// (which will result in a proof being returned).
|
||
|
var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Trusted: false}
|