This commit is contained in:
Eitan Seri-Levi
2026-02-17 17:47:34 -08:00
parent a942fa4cfa
commit 81d30d576a
4 changed files with 17 additions and 13 deletions

View File

@@ -149,7 +149,10 @@ impl<T: BeaconChainTypes> BeaconChain<T> {
}
// The block failed verification.
Err(other) => {
warn!(reason = other.to_string(), "Execution payload envelope rejected");
warn!(
reason = other.to_string(),
"Execution payload envelope rejected"
);
Err(other)
}
}