tendermint/types/events.go

14 lines
158 B
Go
Raw Normal View History

2015-11-02 07:39:53 -08:00
package types
type EventsMode int8
const (
EventsModeOff = EventsMode(0)
EventsModeOn = EventsMode(1)
2015-11-02 07:39:53 -08:00
)
type Event struct {
Key string
Data []byte
2015-11-02 07:39:53 -08:00
}