From bb617d3392c407c1e48acec1a4194e4715a7f7f2 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Mon, 12 Dec 2022 15:43:40 -0800 Subject: [PATCH] Fix stale reference to BaseSign::ready_channel --- lightning/src/util/events.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, -- 2.39.5