tendermint/rpc/client/types.go
Anton Kaliaev 1be7e341b1
remove TagMap
it does not bring any additional benefits
2019-02-07 17:17:55 +04:00

20 lines
501 B
Go

package client
import "github.com/tendermint/tendermint/types"
// 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}
// EventMessage combines event data and tags.
type EventMessage struct {
Data types.TMEventData
Tags map[string]string
}