We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e33884f commit 990f415Copy full SHA for 990f415
1 file changed
runtime/store.go
@@ -36,6 +36,10 @@ func (m memStoreService) OpenMemoryStore(ctx context.Context) store.KVStore {
36
return newKVStore(sdk.UnwrapSDKContext(ctx).KVStore(m.key))
37
}
38
39
+func NewTransientStoreService(storeKey *storetypes.TransientStoreKey) store.TransientStoreService {
40
+ return &transientStoreService{key: storeKey}
41
+}
42
+
43
type transientStoreService struct {
44
key *storetypes.TransientStoreKey
45
0 commit comments