From 7c446b48921d873728c5e22cc18a2fcfb6fe79c9 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Tue, 14 Feb 2023 16:14:03 -0800 Subject: [PATCH] Add missing docs for BumpHTLCResolution --- lightning/src/util/events.rs | 3 +++ 1 file changed, 3 insertions(+) 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, }, } -- 2.39.5