@@ -34,6 +34,7 @@ use bitcoin::secp256k1::{self, SecretKey, PublicKey, Secp256k1, ecdsa::Signature
34
34
35
35
use crate :: ln:: channel:: INITIAL_COMMITMENT_NUMBER ;
36
36
use crate :: ln:: types:: ChannelId ;
37
+ use crate :: types:: features:: ChannelTypeFeatures ;
37
38
use crate :: types:: payment:: { PaymentHash , PaymentPreimage } ;
38
39
use crate :: ln:: msgs:: DecodeError ;
39
40
use crate :: ln:: channel_keys:: { DelayedPaymentKey , DelayedPaymentBasepoint , HtlcBasepoint , HtlcKey , RevocationKey , RevocationBasepoint } ;
@@ -1614,6 +1615,11 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitor<Signer> {
1614
1615
self . inner . lock ( ) . unwrap ( ) . channel_id ( )
1615
1616
}
1616
1617
1618
+ /// Gets the channel type of the corresponding channel.
1619
+ pub fn channel_type_features ( & self ) -> ChannelTypeFeatures {
1620
+ self . inner . lock ( ) . unwrap ( ) . channel_type_features ( )
1621
+ }
1622
+
1617
1623
/// Gets a list of txids, with their output scripts (in the order they appear in the
1618
1624
/// transaction), which we must learn about spends of via block_connected().
1619
1625
pub fn get_outputs_to_watch ( & self ) -> Vec < ( Txid , Vec < ( u32 , ScriptBuf ) > ) > {
@@ -4809,6 +4815,10 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
4809
4815
self . onchain_events_awaiting_threshold_conf . push ( entry) ;
4810
4816
}
4811
4817
}
4818
+
4819
+ fn channel_type_features ( & self ) -> ChannelTypeFeatures {
4820
+ self . onchain_tx_handler . channel_type_features ( ) . clone ( )
4821
+ }
4812
4822
}
4813
4823
4814
4824
impl < Signer : EcdsaChannelSigner , T : Deref , F : Deref , L : Deref > chain:: Listen for ( ChannelMonitor < Signer > , T , F , L )
0 commit comments