public TransactionBlockIndexServiceTests()
 {
     _transactionBlockIndexService  = GetRequiredService <ITransactionBlockIndexService>();
     _kernelTestHelper              = GetRequiredService <KernelTestHelper>();
     _blockchainService             = GetRequiredService <IBlockchainService>();
     _transactionBlockIndexManager  = GetRequiredService <ITransactionBlockIndexManager>();
     _transactionBlockIndexProvider = GetRequiredService <ITransactionBlockIndexProvider>();
 }
Exemplo n.º 2
0
 public TransactionBlockIndexService(IBlockchainService blockchainService,
                                     ITransactionBlockIndexManager transactionBlockIndexManager,
                                     ITransactionBlockIndexProvider transactionBlockIndexProvider)
 {
     _blockchainService             = blockchainService;
     _transactionBlockIndexManager  = transactionBlockIndexManager;
     _transactionBlockIndexProvider = transactionBlockIndexProvider;
 }
Exemplo n.º 3
0
 public TransactionBlockIndexCacheProviderTests()
 {
     _transactionBlockIndexProvider = GetRequiredService <ITransactionBlockIndexProvider>();
 }