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
let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)>;
6019
+
let mut dropped_htlcs: Vec<(HTLCSource, PaymentHash)> = Vec::new();
6020
+
let mut finish_shutdown = None;
6020
6021
{
6021
6022
let per_peer_state = self.per_peer_state.read().unwrap();
6022
6023
let peer_state_mutex = per_peer_state.get(counterparty_node_id)
@@ -6061,8 +6062,7 @@ where
6061
6062
log_error!(self.logger, "Immediately closing unfunded channel {} as peer asked to cooperatively shut it down (which is unnecessary)", &msg.channel_id);
0 commit comments