Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: parallel partial witness handling in the partial witness actor #12656

Merged
merged 13 commits into from
Jan 13, 2025
Prev Previous commit
Next Next commit
add todo comment to ban peers that send invalid partial witnesses
  • Loading branch information
stedfn committed Jan 13, 2025
commit 0ea062415b6e60551facb6913e254e46aa15a952
Original file line number Diff line number Diff line change
Expand Up @@ -415,6 +415,7 @@ impl PartialWitnessActor {
));
}
Ok(false) => {
// TODO: ban sending peer
tracing::warn!(
target: "client",
"Received invalid partial encoded state witness"
Expand Down Expand Up @@ -461,6 +462,7 @@ impl PartialWitnessActor {
}
}
Ok(false) => {
// TODO: ban sending peer
tracing::warn!(
stedfn marked this conversation as resolved.
Show resolved Hide resolved
target: "client",
"Received invalid partial encoded state witness"
Expand Down
Loading