Skip to content

Commit

Permalink
Fix DocGen and remove IWitnessRpcModule (#7150)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubo authored Jun 7, 2024
1 parent e9b0990 commit 692ed6a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions tools/docgen/JsonRpcGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
using Nethermind.JsonRpc.Modules.Evm;
using Nethermind.JsonRpc.Modules.Rpc;
using Nethermind.JsonRpc.Modules.Subscribe;
using Nethermind.JsonRpc.Modules.Witness;
using Newtonsoft.Json;

namespace Nethermind.DocGen;
Expand All @@ -23,8 +22,7 @@ internal static void Generate()
typeof(IEvmRpcModule).FullName,
typeof(IRpcModule).FullName,
typeof(IRpcRpcModule).FullName,
typeof(ISubscribeRpcModule).FullName,
typeof(IWitnessRpcModule).FullName
typeof(ISubscribeRpcModule).FullName
};
var types = new[] { "Nethermind.JsonRpc", "Nethermind.Consensus.Clique" }
.SelectMany(a => Assembly.Load(a).GetTypes())
Expand Down

0 comments on commit 692ed6a

Please sign in to comment.