cosmos-sdk/types/handler.go
2018-01-26 06:54:03 -08:00

7 lines
193 B
Go

package types
type Handler func(ctx Context, msg Msg) Result
// If newCtx.IsZero(), ctx is used instead.
type AnteHandler func(ctx Context, tx Tx) (newCtx Context, result Result, abort bool)