Skip to content

Commit b473a48

Browse files
committed
f remove mentions of dual-funding methods not existing
1 parent dd7cb01 commit b473a48

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

lightning/src/events/mod.rs

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1582,9 +1582,8 @@ pub enum Event {
15821582
/// onion messages.
15831583
peer_node_id: PublicKey,
15841584
},
1585-
/// Indicates that a funding transaction constructed via interactive transaction construction for a
1586-
/// channel is ready to be signed by the client. This event will only be triggered
1587-
/// if at least one input was contributed by the holder and needs to be signed.
1585+
/// Indicates that a channel funding transaction constructed interactively is ready to be
1586+
/// signed. This event will only be triggered if at least one input was contributed.
15881587
///
15891588
/// The transaction contains all inputs provided by both parties along with the channel's funding
15901589
/// output and a change output if applicable.
@@ -1613,17 +1612,11 @@ pub enum Event {
16131612
///
16141613
/// [`ChannelManager::funding_transaction_signed`]: crate::ln::channelmanager::ChannelManager::funding_transaction_signed
16151614
counterparty_node_id: PublicKey,
1616-
// TODO(dual_funding): Enable links when methods are implemented
1617-
/// The `user_channel_id` value passed in to `ChannelManager::create_dual_funded_channel` for outbound
1618-
/// channels, or to [`ChannelManager::accept_inbound_channel`] or `ChannelManager::accept_inbound_channel_with_contribution`
1619-
/// for inbound channels if [`UserConfig::manually_accept_inbound_channels`] config flag is set to true.
1620-
/// Otherwise `user_channel_id` will be randomized for an inbound channel.
1621-
/// This may be zero for objects serialized with LDK versions prior to 0.0.113.
1615+
/// The `user_channel_id` value passed in for outbound channels, or for inbound channels if
1616+
/// [`UserConfig::manually_accept_inbound_channels`] config flag is set to true. Otherwise
1617+
/// `user_channel_id` will be randomized for inbound channels.
16221618
///
1623-
/// [`ChannelManager::accept_inbound_channel`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel
16241619
/// [`UserConfig::manually_accept_inbound_channels`]: crate::util::config::UserConfig::manually_accept_inbound_channels
1625-
// [`ChannelManager::create_dual_funded_channel`]: crate::ln::channelmanager::ChannelManager::create_dual_funded_channel
1626-
// [`ChannelManager::accept_inbound_channel_with_contribution`]: crate::ln::channelmanager::ChannelManager::accept_inbound_channel_with_contribution
16271620
user_channel_id: u128,
16281621
/// The unsigned transaction to be signed and passed back to
16291622
/// [`ChannelManager::funding_transaction_signed`].

0 commit comments

Comments
 (0)