cosmos-sdk/types/handler.go
2017-12-21 03:44:59 -08:00

10 lines
246 B
Go

package types
import (
"github.com/cosmos/cosmos-sdk/store"
)
// Handler handles both ABCI DeliverTx and CheckTx requests.
// Iff ABCI.CheckTx, ctx.IsCheckTx() returns true.
type Handler func(ctx Context, store store.MultiStore, tx Tx) Result