Exemplo n.º 1
0
 public FundingMessageSignedHandler(IChannelLoggingService channelLoggingService, IFundingService fundingService,
                                    ICommitmentTransactionService commitmentService, IChannelService channelService, IBlockchainMonitorService blockchainMonitorService)
 {
     _channelLoggingService    = channelLoggingService;
     _fundingService           = fundingService;
     _commitmentService        = commitmentService;
     _channelService           = channelService;
     _blockchainMonitorService = blockchainMonitorService;
 }
Exemplo n.º 2
0
 public ChannelMonitoringService(IChannelService channelService,
                                 IChannelEstablishmentService channelEstablishmentService,
                                 IBlockchainMonitorService blockchainMonitorService,
                                 IChannelLoggingService channelLoggingService,
                                 IPenaltyService penaltyService,
                                 IUnilateralCloseService unilateralCloseService)
 {
     _channelService = channelService;
     _channelEstablishmentService = channelEstablishmentService;
     _blockchainMonitorService    = blockchainMonitorService;
     _channelLoggingService       = channelLoggingService;
     _penaltyService         = penaltyService;
     _unilateralCloseService = unilateralCloseService;
 }