From: Wilmer Paulino Date: Wed, 15 Feb 2023 00:14:03 +0000 (-0800) Subject: Add missing docs for BumpHTLCResolution X-Git-Tag: v0.0.115~57^2~5 X-Git-Url: http://git.bitcoin.ninja/?a=commitdiff_plain;h=7c446b48921d873728c5e22cc18a2fcfb6fe79c9;p=rust-lightning Add missing docs for BumpHTLCResolution --- diff --git a/lightning/src/util/events.rs b/lightning/src/util/events.rs index 754283dfb..b64022026 100644 --- a/lightning/src/util/events.rs +++ b/lightning/src/util/events.rs @@ -462,7 +462,10 @@ pub enum BumpTransactionEvent { /// [`EcdsaChannelSigner::sign_holder_htlc_transaction`]: crate::chain::keysinterface::EcdsaChannelSigner::sign_holder_htlc_transaction /// [`HTLCDescriptor::tx_input_witness`]: HTLCDescriptor::tx_input_witness HTLCResolution { + /// The target feerate that the resulting HTLC transaction must meet. target_feerate_sat_per_1000_weight: u32, + /// The set of pending HTLCs on the confirmed commitment that need to be claimed, preferably + /// by the same transaction. htlc_descriptors: Vec, }, }