* wip: tests and fixes for kvstore iteration * update for latest tmlibs * types compiles * x/coin almost compiles * x/coin: move things out of the way so it builds * rebase fixes * update glide * add test for ChainDecorators
10 lines
243 B
Go
10 lines
243 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, ms store.MultiStore, tx Tx) Result
|