Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
cowlicks committed Aug 18, 2024
1 parent 111d994 commit 89bdc16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ impl Hypercore {
let mut rx = self.on_get(index);
//let res = rx.recv().await.unwrap();
tokio::spawn(async move {
rx.recv().await;
let _ = rx.recv().await;
});
}
return Ok(None);
Expand Down

0 comments on commit 89bdc16

Please sign in to comment.