Skip to content

Commit 2a7ae1d

Browse files
authored
Merge pull request #33 from flashbots/fix-remove-print
Fix remove print
2 parents b609c17 + 09e6f0c commit 2a7ae1d

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

crates/op-rbuilder/src/payload_builder.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1174,7 +1174,6 @@ where
11741174

11751175
// A sequencer's block should never contain blob or deposit transactions from the pool.
11761176
if tx.is_eip4844() || tx.is_deposit() {
1177-
println!("B");
11781177
best_txs.mark_invalid(tx.signer(), tx.nonce());
11791178
continue;
11801179
}

crates/op-rbuilder/src/payload_builder_vanilla.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1103,12 +1103,6 @@ where
11031103
}
11041104
};
11051105

1106-
println!("include reverted txn: {}", result.is_success());
1107-
println!(
1108-
"self.enable_revert_protection: {}",
1109-
self.enable_revert_protection
1110-
);
1111-
11121106
self.metrics
11131107
.tx_simulation_duration
11141108
.record(tx_simulation_start_time.elapsed());

0 commit comments

Comments
 (0)