Skip to content

Commit 4961b68

Browse files
committed
f fmt
1 parent ca2d211 commit 4961b68

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
@@ -1163,18 +1163,16 @@ async fn start_ldk() {
11631163
let cli_chain_monitor = Arc::clone(&chain_monitor);
11641164
let cli_fs_store = Arc::clone(&fs_store);
11651165
let cli_peer_manager = Arc::clone(&peer_manager);
1166-
let cli_poll = tokio::task::spawn(
1167-
cli::poll_for_user_input(
1168-
cli_peer_manager,
1169-
cli_channel_manager,
1170-
cli_chain_monitor,
1171-
keys_manager,
1172-
network_graph,
1173-
inbound_payments,
1174-
outbound_payments,
1175-
cli_fs_store,
1176-
)
1177-
);
1166+
let cli_poll = tokio::task::spawn(cli::poll_for_user_input(
1167+
cli_peer_manager,
1168+
cli_channel_manager,
1169+
cli_chain_monitor,
1170+
keys_manager,
1171+
network_graph,
1172+
inbound_payments,
1173+
outbound_payments,
1174+
cli_fs_store,
1175+
));
11781176

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

0 commit comments

Comments
 (0)