File tree Expand file tree Collapse file tree 1 file changed +10
-12
lines changed
Expand file tree Collapse file tree 1 file changed +10
-12
lines changed Original file line number Diff line number Diff 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).
You can’t perform that action at this time.
0 commit comments