From db24ae0c9689c803f7f03eabf1a16fb8f4a84ea2 Mon Sep 17 00:00:00 2001 From: Ruben Buniatyan Date: Fri, 7 Jun 2024 00:11:37 +0200 Subject: [PATCH] Remove `IWitnessRpcModule` --- tools/docgen/JsonRpcGenerator.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/docgen/JsonRpcGenerator.cs b/tools/docgen/JsonRpcGenerator.cs index 424dcff4ec5..5257ccd7b3b 100644 --- a/tools/docgen/JsonRpcGenerator.cs +++ b/tools/docgen/JsonRpcGenerator.cs @@ -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; @@ -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())