tendermint/rpc/client/types.go

12 lines
341 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-10-11 05:50:11 -07:00
Height uint64
Trusted bool
}
// DefaultABCIQueryOptions are latest height (0) and prove equal to true.
2017-10-11 05:50:11 -07:00
var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Trusted: false}