public NexusBlockStream(INxsClient nxsClient)
        {
            _nxsClient = nxsClient;

            _subscribers       = new Dictionary <Guid, Func <BlockResponse, Task> >();
            _cancelBlockStream = new CancellationTokenSource();
        }
Exemple #2
0
 public NexusQuery(INxsClient nxsClient, IMapper mapper)
 {
     _nxsClient = nxsClient;
     _mapper    = mapper;
 }