public ProofOfStakeBlockchainService(IConfigurationService configurationService,
                                      IBlockchainRepository blockchainRepository, IStakingStorage stakingStorage,
                                      IServiceProvider serviceProvider) : base(configurationService, blockchainRepository)
 {
     _stakingStorage  = stakingStorage;
     _serviceProvider = serviceProvider;
 }
 public StatisticService(IHubContext <SimulationHub, ISimulationClient> simulationHubContext,
                         IBlockchainService blockchainService, IServiceProvider serviceProvider, IStakingStorage stakingStorage)
 {
     _simulationHubContext = simulationHubContext;
     _blockchainService    = blockchainService;
     _serviceProvider      = serviceProvider;
     _stakingStorage       = stakingStorage;
 }