Move store/types.go to types/store.go and alias

This commit is contained in:
Jae Kwon
2017-12-21 20:05:41 -08:00
parent cd278dea6c
commit 1afab45cf5
7 changed files with 192 additions and 176 deletions
+1 -5
View File
@@ -1,9 +1,5 @@
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
type Handler func(ctx Context, ms MultiStore, tx Tx) Result