You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
392 B

  1. package client
  2. // ABCIQueryOptions can be used to provide options for ABCIQuery call other
  3. // than the DefaultABCIQueryOptions.
  4. type ABCIQueryOptions struct {
  5. Height int64
  6. Trusted bool
  7. }
  8. // DefaultABCIQueryOptions are latest height (0) and trusted equal to false
  9. // (which will result in a proof being returned).
  10. var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Trusted: false}