From: Wilmer Paulino Date: Mon, 12 Dec 2022 23:43:40 +0000 (-0800) Subject: Fix stale reference to BaseSign::ready_channel X-Git-Tag: v0.0.114-beta~52^2~4 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=bb617d3392c407c1e48acec1a4194e4715a7f7f2;p=rust-lightning Fix stale reference to BaseSign::ready_channel --- diff --git a/lightning/src/util/events.rs b/lightning/src/util/events.rs index 375174f6f..b3e9c2361 100644 --- a/lightning/src/util/events.rs +++ b/lightning/src/util/events.rs @@ -257,10 +257,10 @@ pub struct HTLCDescriptor { /// [`InMemorySigner`]: crate::chain::keysinterface::InMemorySigner pub channel_value_satoshis: u64, /// The necessary channel parameters that need to be provided to the re-derived - /// [`InMemorySigner`] through [`BaseSign::ready_channel`]. + /// [`InMemorySigner`] through [`BaseSign::provide_channel_parameters`]. /// /// [`InMemorySigner`]: crate::chain::keysinterface::InMemorySigner - /// [`BaseSign::ready_channel`]: crate::chain::keysinterface::BaseSign::ready_channel + /// [`BaseSign::provide_channel_parameters`]: crate::chain::keysinterface::BaseSign::provide_channel_parameters pub channel_parameters: ChannelTransactionParameters, /// The txid of the commitment transaction in which the HTLC output lives. pub commitment_txid: Txid,