chore: more clippy fixes

This commit is contained in:
sprites0
2025-07-01 02:19:32 +00:00
parent b733170d74
commit 4136d9d50a
3 changed files with 10 additions and 10 deletions

View File

@ -71,7 +71,7 @@ pub async fn start_pseudo_peer(
loop {
tokio::select! {
Some(event) = tokio_stream::StreamExt::next(&mut network_events) => {
info!("Network event: {:?}", event);
info!("Network event: {event:?}");
if matches!(event, NetworkEvent::ActivePeerSession { .. }) && first {
start_tx.send(()).await?;
first = false;