cosmos-sdk/store/reexport.go

32 lines
940 B
Go
Raw Normal View History

2017-10-31 13:45:57 -07:00
package store
import (
2019-02-01 17:03:09 -08:00
"github.com/cosmos/cosmos-sdk/store/types"
2017-10-31 13:45:57 -07:00
)
// Import cosmos-sdk/types/store.go for convenience.
type (
PruningOptions = types.PruningOptions
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
Key = types.StoreKey
Type = types.StoreType
Queryable = types.Queryable
TraceContext = types.TraceContext
2020-03-18 05:59:08 -07:00
Gas = types.Gas
2018-07-26 18:24:18 -07:00
GasMeter = types.GasMeter
2020-03-18 05:59:08 -07:00
GasConfig = types.GasConfig
2019-02-01 17:03:09 -08:00
)