Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Replace Condvars with blocking channel #5815

Merged
merged 6 commits into from
Apr 28, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix
  • Loading branch information
NikVolf committed Apr 28, 2020
commit a09cecfee729a48a3b28cc28a3c78049de587c0c
2 changes: 1 addition & 1 deletion primitives/io/src/batch_verifier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ impl BatchVerifier {
return false;
}
if let Err(e) = receiver.recv() {
log::warn!(target: "runtime", "Haven't received async result from verification task. Returning false.")
log::warn!(target: "runtime", "Haven't received async result from verification task. Returning false.");
return false;
}
}
Expand Down