Exemple #1
0
 public FundingMessageSignedHandler(IChannelLoggingService channelLoggingService, IFundingService fundingService,
                                    ICommitmentTransactionService commitmentService, IChannelService channelService, IBlockchainMonitorService blockchainMonitorService)
 {
     _channelLoggingService    = channelLoggingService;
     _fundingService           = fundingService;
     _commitmentService        = commitmentService;
     _channelService           = channelService;
     _blockchainMonitorService = blockchainMonitorService;
 }
Exemple #2
0
 public FundingMessageLockedHandler(IChannelLoggingService channelLoggingService, ICommitmentTransactionService commitmentService, IChannelService channelService)
 {
     _channelLoggingService = channelLoggingService;
     _commitmentService     = commitmentService;
     _channelService        = channelService;
 }
Exemple #3
0
 public AcceptChannelMessageHandler(IChannelLoggingService channelLoggingService, IFundingService fundingService, ICommitmentTransactionService commitmentService)
 {
     _channelLoggingService = channelLoggingService;
     _fundingService        = fundingService;
     _commitmentService     = commitmentService;
 }