You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lightning/src/ln/functional_tests.rs
+63-8Lines changed: 63 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ use ln::channel::{COMMITMENT_TX_BASE_WEIGHT, COMMITMENT_TX_WEIGHT_PER_HTLC};
22
22
use ln::channelmanager::{ChannelManager,ChannelManagerReadArgs,PaymentId,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
+
use ln::chan_utils::{HTLC_SUCCESS_TX_WEIGHT,HTLCOutputInCommitment};
26
26
use routing::network_graph::{NetworkUpdate,RoutingFees};
27
27
use routing::router::{Route,RouteHop,RouteHint,RouteHintHop, get_route, get_keysend_route};
nodes[1].logger.assert_log("lightning::ln::channelmanager".to_string(),"Funding remote cannot afford proposed new fee with feerate buffer".to_string(),1);
636
691
check_added_monitors!(nodes[1],1);
637
692
check_closed_broadcast!(nodes[1],true);
638
-
check_closed_event!(nodes[1],1,ClosureReason::ProcessingError{ err:String::from("Funding remote cannot afford proposed new fee")});
693
+
check_closed_event!(nodes[1],1,ClosureReason::ProcessingError{ err:String::from("Funding remote cannot afford proposed new fee with feerate buffer")});
0 commit comments