File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -432,13 +432,21 @@ pub enum Event {
432
432
/// The temporary channel ID of the channel requested to be opened.
433
433
///
434
434
/// When responding to the request, the `temporary_channel_id` should be passed
435
- /// back to the ChannelManager with [`ChannelManager::accept_inbound_channel`] to accept,
436
- /// or to [`ChannelManager::force_close_channel`] to reject.
435
+ /// back to the ChannelManager through [`ChannelManager::accept_inbound_channel`] to accept,
436
+ /// or through [`ChannelManager::force_close_channel`] to reject.
437
437
///
438
438
/// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
439
439
/// [`ChannelManager::force_close_channel`]: crate::ln::channelmanager::ChannelManager::force_close_channel
440
440
temporary_channel_id : [ u8 ; 32 ] ,
441
441
/// The node_id of the counterparty requesting to open the channel.
442
+ ///
443
+ /// When responding to the request, the `counterparty_node_id` should be passed
444
+ /// back to the `ChannelManager` through [`ChannelManager::accept_inbound_channel`] to
445
+ /// accept the request, or through [`ChannelManager::force_close_channel`] to reject the
446
+ /// request.
447
+ ///
448
+ /// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
449
+ /// [`ChannelManager::force_close_channel`]: crate::ln::channelmanager::ChannelManager::force_close_channel
442
450
counterparty_node_id : PublicKey ,
443
451
/// The channel value of the requested channel.
444
452
funding_satoshis : u64 ,
You can’t perform that action at this time.
0 commit comments