@@ -39,7 +39,8 @@ use crate::blinded_path::payment::{AsyncBolt12OfferContext, Bolt12OfferContext,
3939use crate::blinded_path::NodeIdLookUp;
4040use crate::chain;
4141use crate::chain::chaininterface::{
42- BroadcastType, BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator,
42+ BroadcasterInterface, ConfirmationTarget, FeeEstimator, LowerBoundedFeeEstimator,
43+ TransactionType,
4344};
4445use crate::chain::channelmonitor::{
4546 Balance, ChannelMonitor, ChannelMonitorUpdate, ChannelMonitorUpdateStep, MonitorEvent,
@@ -6550,7 +6551,7 @@ where
65506551 );
65516552 self.tx_broadcaster.broadcast_transactions(&[(
65526553 funding_tx,
6553- BroadcastType ::Funding { channel_ids: vec![channel.context().channel_id()] },
6554+ TransactionType ::Funding { channel_ids: vec![channel.context().channel_id()] },
65546555 )]);
65556556 {
65566557 let mut pending_events = self.pending_events.lock().unwrap();
@@ -9488,7 +9489,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
94889489 log_info!(self.logger, "Broadcasting batch funding tx {}", tx.compute_txid());
94899490 self.tx_broadcaster.broadcast_transactions(&[(
94909491 &tx,
9491- BroadcastType ::Funding { channel_ids: batch_channel_ids },
9492+ TransactionType ::Funding { channel_ids: batch_channel_ids },
94929493 )]);
94939494 }
94949495 }
@@ -10157,7 +10158,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
1015710158 log_info!(logger, "Broadcasting funding transaction with txid {}", tx.compute_txid());
1015810159 self.tx_broadcaster.broadcast_transactions(&[(
1015910160 &tx,
10160- BroadcastType ::Funding { channel_ids: vec![channel.context.channel_id()] },
10161+ TransactionType ::Funding { channel_ids: vec![channel.context.channel_id()] },
1016110162 )]);
1016210163 }
1016310164 }
@@ -11621,7 +11622,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
1162111622 log_info!(logger, "Broadcasting {}", log_tx!(broadcast_tx));
1162211623 self.tx_broadcaster.broadcast_transactions(&[(
1162311624 &broadcast_tx,
11624- BroadcastType ::CooperativeClose { channel_id: msg.channel_id },
11625+ TransactionType ::CooperativeClose { channel_id: msg.channel_id },
1162511626 )]);
1162611627 let _ = self.handle_error(err, *counterparty_node_id);
1162711628 }
@@ -12951,7 +12952,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
1295112952 log_info!(logger, "Broadcasting closing tx {}", log_tx!(broadcast_tx));
1295212953 self.tx_broadcaster.broadcast_transactions(&[(
1295312954 &broadcast_tx,
12954- BroadcastType ::CooperativeClose { channel_id },
12955+ TransactionType ::CooperativeClose { channel_id },
1295512956 )]);
1295612957 }
1295712958 } else {
@@ -13082,7 +13083,7 @@ This indicates a bug inside LDK. Please report this error at https://github.com/
1308213083 log_info!(logger, "Broadcasting {}", log_tx!(tx));
1308313084 self.tx_broadcaster.broadcast_transactions(&[(
1308413085 &tx,
13085- BroadcastType ::CooperativeClose { channel_id },
13086+ TransactionType ::CooperativeClose { channel_id },
1308613087 )]);
1308713088 false
1308813089 } else {
0 commit comments