Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/op-rbuilder/src/payload_builder_vanilla.rs
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ impl<Txs> OpBuilder<'_, Txs> {
);

let sealed_block = Arc::new(block.seal_slow());
info!(target: "payload_builder", id=%ctx.attributes().payload_id(), "sealed built block");
tracing::info!(target: "payload_builder", id=%ctx.attributes().payload_id(), "sealed built block");

// create the executed block data
let executed: ExecutedBlockWithTrieUpdates<OpPrimitives> = ExecutedBlockWithTrieUpdates {
Expand Down Expand Up @@ -1096,7 +1096,7 @@ where
num_txs_simulated_success += 1;
} else {
num_txs_simulated_fail += 1;
trace!(target: "payload_builder", ?tx, "skipping reverted transaction");
info!(target: "payload_builder", tx_hash = ?tx.tx_hash(), "skipping reverted transaction");
best_txs.mark_invalid(tx.signer(), tx.nonce());
info.invalid_tx_hashes.insert(tx.tx_hash());
continue;
Expand Down
Loading