Skip to content

Commit a74fcb8

Browse files
committed
Define anchor channel reserve requirements
This change defines anchor reserve requirements by calculating weights and fees for the transactions that need to be confirmed on-chain in the event of a unilateral closure. The calculation is given a set of parameters as input, including the expected fee rate and number of in-flight HTLCs.
1 parent 1a8bf62 commit a74fcb8

File tree

3 files changed

+414
-0
lines changed

3 files changed

+414
-0
lines changed

lightning/src/chain/channelmonitor.rs

+10
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ use bitcoin::secp256k1::{self, SecretKey, PublicKey, Secp256k1, ecdsa::Signature
3434

3535
use crate::ln::channel::INITIAL_COMMITMENT_NUMBER;
3636
use crate::ln::types::ChannelId;
37+
use crate::types::features::ChannelTypeFeatures;
3738
use crate::types::payment::{PaymentHash, PaymentPreimage};
3839
use crate::ln::msgs::DecodeError;
3940
use crate::ln::channel_keys::{DelayedPaymentKey, DelayedPaymentBasepoint, HtlcBasepoint, HtlcKey, RevocationKey, RevocationBasepoint};
@@ -1571,6 +1572,11 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitor<Signer> {
15711572
self.inner.lock().unwrap().channel_id()
15721573
}
15731574

1575+
/// Gets the channel type of the corresponding channel.
1576+
pub fn channel_type_features(&self) -> ChannelTypeFeatures {
1577+
self.inner.lock().unwrap().channel_type_features()
1578+
}
1579+
15741580
/// Gets a list of txids, with their output scripts (in the order they appear in the
15751581
/// transaction), which we must learn about spends of via block_connected().
15761582
pub fn get_outputs_to_watch(&self) -> Vec<(Txid, Vec<(u32, ScriptBuf)>)> {
@@ -4692,6 +4698,10 @@ impl<Signer: EcdsaChannelSigner> ChannelMonitorImpl<Signer> {
46924698
self.onchain_events_awaiting_threshold_conf.push(entry);
46934699
}
46944700
}
4701+
4702+
fn channel_type_features(&self) -> ChannelTypeFeatures {
4703+
self.onchain_tx_handler.channel_type_features().clone()
4704+
}
46954705
}
46964706

46974707
impl<Signer: EcdsaChannelSigner, T: Deref, F: Deref, L: Deref> chain::Listen for (ChannelMonitor<Signer>, T, F, L)

0 commit comments

Comments
 (0)