https://github.com/tendermint/tendermint
Raw File
Tip revision: eab264dc3c8349473146220fbd8636e550e9a48c authored by William Banfield on 04 August 2022, 19:54:56 UTC
format table
Tip revision: eab264d
types.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}
back to top