2017-12-01 14:08:37 -08:00
|
|
|
package types
|
2017-11-26 14:14:03 -08:00
|
|
|
|
|
|
|
import (
|
2017-12-20 21:23:19 -08:00
|
|
|
"github.com/cosmos/cosmos-sdk/store"
|
2017-11-26 14:14:03 -08:00
|
|
|
)
|
|
|
|
|
2017-12-03 21:25:37 -08:00
|
|
|
// Handler handles both ABCI DeliverTx and CheckTx requests.
|
|
|
|
// Iff ABCI.CheckTx, ctx.IsCheckTx() returns true.
|
2017-12-20 21:23:19 -08:00
|
|
|
type Handler func(ctx Context, ms store.MultiStore, tx Tx) Result
|