Ejemplo n.º 1
0
 public BlockchainProcessor(IBlockchainProcessingOrchestrator blockchainProcessingOrchestrator, IBlockProgressRepository blockProgressRepository, ILastConfirmedBlockNumberService lastConfirmedBlockNumberService, ILog log = null)
 {
     _blockchainProcessingOrchestrator = blockchainProcessingOrchestrator;
     _blockProgressRepository          = blockProgressRepository;
     _lastConfirmedBlockNumberService  = lastConfirmedBlockNumberService;
     _log = log;
 }
Ejemplo n.º 2
0
 public BlockchainCrawlingProcessor(BlockCrawlOrchestrator blockchainProcessingOrchestrator, IBlockProgressRepository blockProgressRepository, ILastConfirmedBlockNumberService lastConfirmedBlockNumberService, ILog log = null) : base(blockchainProcessingOrchestrator, blockProgressRepository, lastConfirmedBlockNumberService, log)
 {
 }