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
|
|
|
)
|
|
|
|
|
2017-12-21 20:05:41 -08:00
|
|
|
// Import cosmos-sdk/types/store.go for convenience.
|
2018-07-12 16:58:51 -07:00
|
|
|
type (
|
2019-01-09 07:06:22 -08:00
|
|
|
PruningOptions = types.PruningOptions
|
2018-07-12 16:58:51 -07:00
|
|
|
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
|
2020-05-08 01:46:12 -07:00
|
|
|
Key = types.StoreKey
|
|
|
|
Type = types.StoreType
|
2018-07-12 16:58:51 -07:00
|
|
|
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
|
|
|
)
|