Skip to content

Commit

Permalink
Update node/bft/src/gateway.rs
Browse files Browse the repository at this point in the history
ignore the result of process_message_inner

Co-authored-by: Jos Dehaes <[email protected]>
  • Loading branch information
elderhammer and joske authored Jun 24, 2024
1 parent 1fa9c36 commit 0dab834
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/bft/src/gateway.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ impl<N: Network> Reading for Gateway<N> {
// Handle BlockRequest and BlockResponse messages in a separate task to not block the
// inbound queue.
tokio::spawn(async move {
self_.process_message_inner(peer_addr, message).await;
let _ = self_.process_message_inner(peer_addr, message).await;
});
} else {
self.process_message_inner(peer_addr, message).await;
Expand Down

0 comments on commit 0dab834

Please sign in to comment.