github.com/ari-anchor/sei-tendermint@v0.0.0-20230519144642-dc826b7b56bb/rpc/client/types.go (about)

     1  package client
     2  
     3  // ABCIQueryOptions can be used to provide options for ABCIQuery call other
     4  // than the DefaultABCIQueryOptions.
     5  type ABCIQueryOptions struct {
     6  	Height int64
     7  	Prove  bool
     8  }
     9  
    10  // DefaultABCIQueryOptions are latest height (0) and prove false.
    11  var DefaultABCIQueryOptions = ABCIQueryOptions{Height: 0, Prove: false}