Skip to content

Commit 54a8494

Browse files
committed
f fmt
1 parent 87904ae commit 54a8494

1 file changed

Lines changed: 10 additions & 12 deletions

File tree

src/main.rs

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,18 +1150,16 @@ async fn start_ldk() {
11501150
let cli_chain_monitor = Arc::clone(&chain_monitor);
11511151
let cli_fs_store = Arc::clone(&fs_store);
11521152
let cli_peer_manager = Arc::clone(&peer_manager);
1153-
let cli_poll = tokio::task::spawn(
1154-
cli::poll_for_user_input(
1155-
cli_peer_manager,
1156-
cli_channel_manager,
1157-
cli_chain_monitor,
1158-
keys_manager,
1159-
network_graph,
1160-
inbound_payments,
1161-
outbound_payments,
1162-
cli_fs_store,
1163-
)
1164-
);
1153+
let cli_poll = tokio::task::spawn(cli::poll_for_user_input(
1154+
cli_peer_manager,
1155+
cli_channel_manager,
1156+
cli_chain_monitor,
1157+
keys_manager,
1158+
network_graph,
1159+
inbound_payments,
1160+
outbound_payments,
1161+
cli_fs_store,
1162+
));
11651163

11661164
// Exit if either CLI polling exits or the background processor exits (which shouldn't happen
11671165
// unless we fail to write to the filesystem).

0 commit comments

Comments
 (0)