10 lines
224 B
Go
10 lines
224 B
Go
package types
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk"
|
|
)
|
|
|
|
// Handler handles both ABCI DeliverTx and CheckTx requests.
|
|
// Iff ABCI.CheckTx, ctx.IsCheckTx() returns true.
|
|
type Handler func(ctx Context, ms MultiStore, tx Tx)
|