Skip to content

Commit

Permalink
Make some class public to plugin (neo-project#2109)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhangTao1596 authored and cloud8little committed Jan 24, 2021
1 parent c528f82 commit 9851cb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/neo/Persistence/StoreDataCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

namespace Neo.Persistence
{
internal class StoreDataCache<TKey, TValue> : DataCache<TKey, TValue>
public class StoreDataCache<TKey, TValue> : DataCache<TKey, TValue>
where TKey : IEquatable<TKey>, ISerializable, new()
where TValue : class, ICloneable<TValue>, ISerializable, new()
{
Expand Down
2 changes: 1 addition & 1 deletion src/neo/Persistence/StoreMetaDataCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace Neo.Persistence
{
internal class StoreMetaDataCache<T> : MetaDataCache<T>
public class StoreMetaDataCache<T> : MetaDataCache<T>
where T : class, ICloneable<T>, ISerializable, new()
{
private readonly IReadOnlyStore store;
Expand Down

0 comments on commit 9851cb9

Please sign in to comment.