Skip to content

Commit 87648d8

Browse files
committed
draft
1 parent 0848e7a commit 87648d8

File tree

6 files changed

+527
-47
lines changed

6 files changed

+527
-47
lines changed

lightning-background-processor/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1241,6 +1241,7 @@ mod tests {
12411241
>,
12421242
>,
12431243
Arc<test_utils::TestLogger>,
1244+
Arc<channelmanager::DefaultHTLCInterceptHandler>,
12441245
>;
12451246

12461247
type ChainMonitor = chainmonitor::ChainMonitor<
@@ -1678,6 +1679,7 @@ mod tests {
16781679
UserConfig::default(),
16791680
params,
16801681
genesis_block.header.time,
1682+
Arc::new(channelmanager::DefaultHTLCInterceptHandler),
16811683
));
16821684
let messenger = Arc::new(OnionMessenger::new(
16831685
keys_manager.clone(),

lightning-liquidity/tests/common/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ type ChannelManager = channelmanager::ChannelManager<
9292
>,
9393
>,
9494
Arc<test_utils::TestLogger>,
95+
Arc<channelmanager::DefaultHTLCInterceptHandler>,
9596
>;
9697

9798
type ChainMonitor = chainmonitor::ChainMonitor<
@@ -445,6 +446,7 @@ pub(crate) fn create_liquidity_node(
445446
UserConfig::default(),
446447
chain_params,
447448
genesis_block.header.time,
449+
Arc::new(channelmanager::DefaultHTLCInterceptHandler),
448450
));
449451
let p2p_gossip_sync = Arc::new(P2PGossipSync::new(
450452
network_graph.clone(),

0 commit comments

Comments
 (0)