We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2e275e commit d2afc83Copy full SHA for d2afc83
1 file changed
crates/blockchain-tree/src/chain.rs
@@ -226,7 +226,9 @@ impl AppendableChain {
226
let block_hash = block.hash();
227
let block = block.unseal();
228
229
+ let start = Instant::now();
230
let state = executor.execute((&block, U256::MAX, ancestor_blocks).into())?;
231
+ tracing::debug!(target: "blockchain_tree::chain", elapsed = ?start.elapsed(), "test info: executed block");
232
externals.consensus.validate_block_post_execution(
233
&block,
234
PostExecutionInput::new(&state.receipts, &state.requests),
0 commit comments