chore: log num hash (#11364)

This commit is contained in:
Matthias Seitz
2024-10-01 14:07:07 +02:00
committed by GitHub
parent bdbdb143dc
commit 94b076d2c7

View File

@ -348,7 +348,7 @@ where
tokio::select! {
payload = built_payloads.select_next_some() => {
if let Some(executed_block) = payload.executed_block() {
debug!(target: "reth::cli", hash=%executed_block.block().hash(), "inserting built payload");
debug!(target: "reth::cli", block=?executed_block.block().num_hash(), "inserting built payload");
eth_service.orchestrator_mut().handler_mut().handler_mut().on_event(EngineApiRequest::InsertExecutedBlock(executed_block).into());
}
}