cosmos-sdk/types/handler.go

6 lines
147 B
Go
Raw Normal View History

2017-12-01 14:08:37 -08:00
package types
2018-01-10 20:11:44 -08:00
type Handler func(ctx Context, tx Tx) Result
2018-01-12 14:30:02 -08:00
type AnteHandler func(ctx Context, tx Tx) (newCtx Context, result Result, abort bool)