chore(node): update misleading consensus engine log message (#22124)

Co-authored-by: Amp <amp@ampcode.com>
Co-authored-by: Emma Jamieson-Hoare <emmajam@users.noreply.github.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-12 11:14:03 -05:00
committed by GitHub
parent 66169c7e7c
commit 77cb99fc78
2 changed files with 6 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
reth-node-events: patch
---
Updated consensus engine log message to be more accurate about received updates.

View File

@@ -265,7 +265,7 @@ impl NodeState {
warn!(number=block.number(), hash=?block.hash(), "Encountered invalid block");
}
ConsensusEngineEvent::BlockReceived(num_hash) => {
info!(number=num_hash.number, hash=?num_hash.hash, "Received block from consensus engine");
info!(number=num_hash.number, hash=?num_hash.hash, "Received new payload from consensus engine");
}
}
}