Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions lightning-background-processor/src/lib.rs
Original file line numberDiff line numberDiff line change
Expand Up@@ -1241,6 +1241,7 @@ mod tests {
>,
>,
Arc<test_utils::TestLogger>,
Arc<channelmanager::DefaultHTLCInterceptHandler>,
>;

type ChainMonitor = chainmonitor::ChainMonitor<
Expand DownExpand Up@@ -1678,6 +1679,7 @@ mod tests {
UserConfig::default(),
params,
genesis_block.header.time,
Arc::new(channelmanager::DefaultHTLCInterceptHandler),
));
let messenger = Arc::new(OnionMessenger::new(
keys_manager.clone(),
Expand Down
2 changes: 2 additions & 0 deletions lightning-liquidity/tests/common/mod.rs
Original file line numberDiff line numberDiff line change
Expand Up@@ -92,6 +92,7 @@ type ChannelManager = channelmanager::ChannelManager<
>,
>,
Arc<test_utils::TestLogger>,
Arc<channelmanager::DefaultHTLCInterceptHandler>,
>;

type ChainMonitor = chainmonitor::ChainMonitor<
Expand DownExpand Up@@ -445,6 +446,7 @@ pub(crate) fn create_liquidity_node(
UserConfig::default(),
chain_params,
genesis_block.header.time,
Arc::new(channelmanager::DefaultHTLCInterceptHandler),
));
let p2p_gossip_sync = Arc::new(P2PGossipSync::new(
network_graph.clone(),
Expand Down
Loading