Skip to content

Commit a020775

Browse files
committed
Remove unnecessary field
1 parent 862f100 commit a020775

File tree

3 files changed

+0
-12
lines changed

3 files changed

+0
-12
lines changed

src/Nethermind/Nethermind.Api/IApiWithBlockchain.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,6 @@ public interface IApiWithBlockchain : IApiWithStores, IBlockchainBridgeFactory
7979

8080
IGasPriceOracle GasPriceOracle { get; }
8181

82-
[SkipServiceCollection]
83-
IEthSyncingInfo? EthSyncingInfo { get; }
84-
85-
8682
IBlockProductionPolicy? BlockProductionPolicy { get; set; }
8783
BackgroundTaskScheduler BackgroundTaskScheduler { get; set; }
8884
CensorshipDetector CensorshipDetector { get; set; }

src/Nethermind/Nethermind.Api/IApiWithNetwork.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
using Nethermind.Network.Rlpx;
1010
using Nethermind.Synchronization;
1111
using Nethermind.Synchronization.Peers;
12-
using Nethermind.Sockets;
1312
using Nethermind.Synchronization.ParallelSync;
1413

1514
namespace Nethermind.Api

src/Nethermind/Nethermind.Api/NethermindApi.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,12 @@
1818
using Nethermind.Consensus.Scheduler;
1919
using Nethermind.Consensus.Validators;
2020
using Nethermind.Core;
21-
using Nethermind.Core.Authentication;
22-
using Nethermind.Core.PubSub;
2321
using Nethermind.Core.Specs;
2422
using Nethermind.Core.Timers;
2523
using Nethermind.Crypto;
2624
using Nethermind.Db;
2725
using Nethermind.Db.Blooms;
2826
using Nethermind.Facade;
29-
using Nethermind.Facade.Eth;
30-
using Nethermind.Grpc;
3127
using Nethermind.JsonRpc;
3228
using Nethermind.JsonRpc.Modules;
3329
using Nethermind.JsonRpc.Modules.Eth.GasPrice;
@@ -44,7 +40,6 @@
4440
using Nethermind.Synchronization.Peers;
4541
using Nethermind.TxPool;
4642
using Nethermind.Wallet;
47-
using Nethermind.Sockets;
4843
using Nethermind.Consensus.Processing.CensorshipDetector;
4944
using Nethermind.Facade.Find;
5045

@@ -147,8 +142,6 @@ public IBlockchainBridge CreateBlockchainBridge()
147142
public IBlockProducerEnvFactory BlockProducerEnvFactory => Context.Resolve<IBlockProducerEnvFactory>();
148143
public IBlockImprovementContextFactory? BlockImprovementContextFactory { get; set; }
149144
public IGasPriceOracle GasPriceOracle => Context.Resolve<IGasPriceOracle>();
150-
151-
public IEthSyncingInfo? EthSyncingInfo => Context.Resolve<IEthSyncingInfo>();
152145
public IBlockProductionPolicy? BlockProductionPolicy { get; set; }
153146
public BackgroundTaskScheduler BackgroundTaskScheduler { get; set; } = null!;
154147
public CensorshipDetector CensorshipDetector { get; set; } = null!;

0 commit comments

Comments
 (0)