package query import "github.com/tendermint/tendermint/pkg/abci" // Empty query matches any set of events. type Empty struct { } // Matches always returns true. func (Empty) Matches(events []abci.Event) (bool, error) { return true, nil } func (Empty) String() string { return "empty" }