@@ -22,6 +22,7 @@ use ln::channel::{COMMITMENT_TX_BASE_WEIGHT, COMMITMENT_TX_WEIGHT_PER_HTLC};
22
22
use ln::channelmanager::{ChannelManager, ChannelManagerReadArgs, RAACommitmentOrder, PaymentSendFailure, BREAKDOWN_TIMEOUT, MIN_CLTV_EXPIRY_DELTA};
23
23
use ln::channel::{Channel, ChannelError};
24
24
use ln::{chan_utils, onion_utils};
25
+ use ln::chan_utils::HTLC_SUCCESS_TX_WEIGHT;
25
26
use routing::router::{Route, RouteHop, RouteHint, RouteHintHop, get_route};
26
27
use routing::network_graph::RoutingFees;
27
28
use ln::features::{ChannelFeatures, InitFeatures, InvoiceFeatures, NodeFeatures};
@@ -1735,14 +1736,24 @@ fn test_chan_reserve_violation_outbound_htlc_inbound_chan() {
1735
1736
// sending any above-dust amount would result in a channel reserve violation.
1736
1737
// In this test we check that we would be prevented from sending an HTLC in
1737
1738
// this situation.
1738
- chanmon_cfgs[ 0 ] . fee_estimator = test_utils:: TestFeeEstimator { sat_per_kw : Mutex :: new ( 6000 ) } ;
1739
- chanmon_cfgs[ 1 ] . fee_estimator = test_utils:: TestFeeEstimator { sat_per_kw : Mutex :: new ( 6000 ) } ;
1739
+ let feerate_per_kw = 253;
1740
+ chanmon_cfgs[0].fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(feerate_per_kw) };
1741
+ chanmon_cfgs[1].fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(feerate_per_kw) };
1740
1742
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1741
1743
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None]);
1742
1744
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1743
- let _ = create_announced_chan_between_nodes_with_value ( & nodes, 0 , 1 , 100000 , 95000000 , InitFeatures :: known ( ) , InitFeatures :: known ( ) ) ;
1744
1745
1745
- let ( route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash ! ( nodes[ 1 ] , nodes[ 0 ] , 4843000 ) ;
1746
+ let mut push_amt = 100_000_000;
1747
+ push_amt -= feerate_per_kw as u64 * (COMMITMENT_TX_BASE_WEIGHT + COMMITMENT_TX_WEIGHT_PER_HTLC) / 1000 * 1000;
1748
+ push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000) * 1000;
1749
+
1750
+ let _ = create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100_000, push_amt, InitFeatures::known(), InitFeatures::known());
1751
+
1752
+ // Sending exactly enough to hit the reserve amount should be accepted
1753
+ let (_, _, _) = route_payment(&nodes[1], &[&nodes[0]], 1_000_000);
1754
+
1755
+ // However one more HTLC should be significantly over the reserve amount and fail.
1756
+ let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], 1_000_000);
1746
1757
unwrap_send_err!(nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1747
1758
assert_eq!(err, "Cannot send value that would put counterparty balance under holder-announced channel reserve value"));
1748
1759
assert!(nodes[1].node.get_and_clear_pending_msg_events().is_empty());
@@ -1794,21 +1805,34 @@ fn test_chan_reserve_violation_inbound_htlc_outbound_channel() {
1794
1805
fn test_chan_reserve_dust_inbound_htlcs_outbound_chan() {
1795
1806
// Test that if we receive many dust HTLCs over an outbound channel, they don't count when
1796
1807
// calculating our commitment transaction fee (this was previously broken).
1797
- let chanmon_cfgs = create_chanmon_cfgs ( 2 ) ;
1808
+ let mut chanmon_cfgs = create_chanmon_cfgs(2);
1809
+ let feerate_per_kw = 253;
1810
+ chanmon_cfgs[0].fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(feerate_per_kw) };
1811
+ chanmon_cfgs[1].fee_estimator = test_utils::TestFeeEstimator { sat_per_kw: Mutex::new(feerate_per_kw) };
1812
+
1798
1813
let node_cfgs = create_node_cfgs(2, &chanmon_cfgs);
1799
1814
let node_chanmgrs = create_node_chanmgrs(2, &node_cfgs, &[None, None, None]);
1800
1815
let mut nodes = create_network(2, &node_cfgs, &node_chanmgrs);
1801
1816
1802
1817
// Set nodes[0]'s balance such that they will consider any above-dust received HTLC to be a
1803
1818
// channel reserve violation (so their balance is channel reserve (1000 sats) + commitment
1804
1819
// transaction fee with 0 HTLCs (183 sats)).
1805
- create_announced_chan_between_nodes_with_value ( & nodes, 0 , 1 , 100000 , 98817000 , InitFeatures :: known ( ) , InitFeatures :: known ( ) ) ;
1820
+ let mut push_amt = 100_000_000;
1821
+ push_amt -= feerate_per_kw as u64 * (COMMITMENT_TX_BASE_WEIGHT) / 1000 * 1000;
1822
+ push_amt -= Channel::<EnforcingSigner>::get_holder_selected_channel_reserve_satoshis(100_000) * 1000;
1823
+ create_announced_chan_between_nodes_with_value(&nodes, 0, 1, 100000, push_amt, InitFeatures::known(), InitFeatures::known());
1806
1824
1807
- let dust_amt = 329000 ; // Dust amount
1825
+ let dust_amt = crate::ln::channel::MIN_DUST_LIMIT_SATOSHIS * 1000
1826
+ + feerate_per_kw as u64 * HTLC_SUCCESS_TX_WEIGHT / 1000 * 1000 - 1;
1808
1827
// In the previous code, routing this dust payment would cause nodes[0] to perceive a channel
1809
1828
// reserve violation even though it's a dust HTLC and therefore shouldn't count towards the
1810
1829
// commitment transaction fee.
1811
1830
let (_, _, _) = route_payment(&nodes[1], &[&nodes[0]], dust_amt);
1831
+
1832
+ // One more than the dust amt should fail, however.
1833
+ let (route, our_payment_hash, _, our_payment_secret) = get_route_and_payment_hash!(nodes[1], nodes[0], dust_amt + 1);
1834
+ unwrap_send_err!(nodes[1].node.send_payment(&route, our_payment_hash, &Some(our_payment_secret)), true, APIError::ChannelUnavailable { ref err },
1835
+ assert_eq!(err, "Cannot send value that would put counterparty balance under holder-announced channel reserve value"));
1812
1836
}
1813
1837
1814
1838
#[test]
0 commit comments