From 63fbc48c60111c2971a774994fd3485a0f0603b1 Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sun, 25 Jun 2023 18:45:58 +0200 Subject: [PATCH] chore: Error -> Failed for failed make_canonical call (#3376) --- crates/consensus/beacon/src/engine/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/consensus/beacon/src/engine/mod.rs b/crates/consensus/beacon/src/engine/mod.rs index ceb022a4a9..43f5b7f0bd 100644 --- a/crates/consensus/beacon/src/engine/mod.rs +++ b/crates/consensus/beacon/src/engine/mod.rs @@ -671,7 +671,7 @@ where error: Error, ) -> PayloadStatus { debug_assert!(self.sync.is_pipeline_idle(), "pipeline must be idle"); - warn!(target: "consensus::engine", ?error, ?state, "Error canonicalizing the head hash"); + warn!(target: "consensus::engine", ?error, ?state, "Failed to canonicalize the head hash"); // check if the new head was previously invalidated, if so then we deem this FCU // as invalid