Skip to content

Commit e0ad51d

Browse files
committed
f fmt
1 parent 86e664a commit e0ad51d

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

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

0 commit comments

Comments
 (0)