We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c0bf42 commit 95a82c7Copy full SHA for 95a82c7
1 file changed
lightning/src/ln/channel.rs
@@ -1783,6 +1783,10 @@ impl FundingScope {
1783
self.channel_transaction_parameters.funding_outpoint
1784
}
1785
1786
+ pub fn get_funding_txid(&self) -> Option<Txid> {
1787
+ self.channel_transaction_parameters.funding_outpoint.map(|txo| txo.txid)
1788
+ }
1789
+
1790
fn get_holder_selected_contest_delay(&self) -> u16 {
1791
self.channel_transaction_parameters.holder_selected_contest_delay
1792
0 commit comments