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"
|
|
|
|
stypes "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-04-18 21:49:24 -07:00
|
|
|
// nolint
|
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
|
|
|
|
StoreKey = types.StoreKey
|
|
|
|
StoreType = types.StoreType
|
|
|
|
Queryable = types.Queryable
|
|
|
|
TraceContext = types.TraceContext
|
2019-02-01 17:03:09 -08:00
|
|
|
Gas = stypes.Gas
|
2018-07-26 18:24:18 -07:00
|
|
|
GasMeter = types.GasMeter
|
2019-02-01 17:03:09 -08:00
|
|
|
GasConfig = stypes.GasConfig
|
|
|
|
)
|
|
|
|
|
|
|
|
// nolint - reexport
|
|
|
|
var (
|
|
|
|
PruneNothing = types.PruneNothing
|
|
|
|
PruneEverything = types.PruneEverything
|
|
|
|
PruneSyncable = types.PruneSyncable
|
2018-07-12 16:58:51 -07:00
|
|
|
)
|