cosmos-sdk/store/codec.go

33 lines
945 B
Go
Raw Normal View History

2017-10-31 13:45:57 -07:00
package store
import (
"github.com/cosmos/cosmos-sdk/types"
2017-10-31 13:45:57 -07:00
)
// Import cosmos-sdk/types/store.go for convenience.
2018-04-18 21:49:24 -07:00
// nolint
type (
2018-07-26 18:24:18 -07:00
PruningStrategy = types.PruningStrategy
Store = types.Store
Committer = types.Committer
CommitStore = types.CommitStore
MultiStore = types.MultiStore
CacheMultiStore = types.CacheMultiStore
CommitMultiStore = types.CommitMultiStore
KVStore = types.KVStore
KVPair = types.KVPair
Iterator = types.Iterator
CacheKVStore = types.CacheKVStore
CommitKVStore = types.CommitKVStore
CacheWrapper = types.CacheWrapper
CacheWrap = types.CacheWrap
CommitID = types.CommitID
StoreKey = types.StoreKey
StoreType = types.StoreType
Queryable = types.Queryable
TraceContext = types.TraceContext
2018-07-26 18:24:18 -07:00
Gas = types.Gas
GasMeter = types.GasMeter
GasConfig = types.GasConfig
)