feat(runtime): Add missing NewTransientStoreService (#20261)
This commit is contained in:
parent
e33884f79a
commit
990f415eeb
@ -36,6 +36,10 @@ func (m memStoreService) OpenMemoryStore(ctx context.Context) store.KVStore {
|
||||
return newKVStore(sdk.UnwrapSDKContext(ctx).KVStore(m.key))
|
||||
}
|
||||
|
||||
func NewTransientStoreService(storeKey *storetypes.TransientStoreKey) store.TransientStoreService {
|
||||
return &transientStoreService{key: storeKey}
|
||||
}
|
||||
|
||||
type transientStoreService struct {
|
||||
key *storetypes.TransientStoreKey
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user