cosmos-sdk/store/reexport.go

40 lines
1.1 KiB
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.
2018-04-18 21:49:24 -07:00
// nolint
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
StoreKey = types.StoreKey
StoreType = 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
)
// nolint - reexport
var (
PruneNothing = types.PruneNothing
PruneEverything = types.PruneEverything
PruneSyncable = types.PruneSyncable
)