Skip to content

Commit 9bc0409

Browse files
committed
f fmt
1 parent 1ffe2a7 commit 9bc0409

File tree

1 file changed

+10
-12
lines changed

1 file changed

+10
-12
lines changed

src/main.rs

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1149,18 +1149,16 @@ async fn start_ldk() {
11491149
let cli_chain_monitor = Arc::clone(&chain_monitor);
11501150
let cli_fs_store = Arc::clone(&fs_store);
11511151
let cli_peer_manager = Arc::clone(&peer_manager);
1152-
let cli_poll = tokio::task::spawn(
1153-
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-
)
1163-
);
1152+
let cli_poll = tokio::task::spawn(cli::poll_for_user_input(
1153+
cli_peer_manager,
1154+
cli_channel_manager,
1155+
cli_chain_monitor,
1156+
keys_manager,
1157+
network_graph,
1158+
inbound_payments,
1159+
outbound_payments,
1160+
cli_fs_store,
1161+
));
11641162

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

0 commit comments

Comments
 (0)