Skip to content

Commit

Permalink
Make Plugin List public (#466)
Browse files Browse the repository at this point in the history
  • Loading branch information
belane authored and erikzhang committed Nov 14, 2018
1 parent c258cfc commit 60a02ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neo/Plugins/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Neo.Plugins
{
public abstract class Plugin
{
private static readonly List<Plugin> Plugins = new List<Plugin>();
public static readonly List<Plugin> Plugins = new List<Plugin>();
private static readonly List<ILogPlugin> Loggers = new List<ILogPlugin>();
internal static readonly List<IPolicyPlugin> Policies = new List<IPolicyPlugin>();
internal static readonly List<IRpcPlugin> RpcPlugins = new List<IRpcPlugin>();
Expand Down

0 comments on commit 60a02ee

Please sign in to comment.