We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6840e92 commit e3a1b33Copy full SHA for e3a1b33
crates/op-rbuilder/src/builders/context.rs
@@ -429,8 +429,7 @@ impl<ExtraCtx: Debug + Default> OpPayloadBuilderCtx<ExtraCtx> {
429
// Note that we need to use the Option to signal whether the transaction comes from a bundle,
430
// otherwise, we would exclude all transactions that are not in the reverted hashes.
431
let is_bundle_tx = reverted_hashes.is_some();
432
- let exclude_reverting_txs =
433
- is_bundle_tx && !reverted_hashes.unwrap().contains(&tx_hash);
+ let exclude_reverting_txs = is_bundle_tx && !reverted_hashes.unwrap().contains(tx_hash);
434
435
let log_txn = |result: TxnExecutionResult| {
436
debug!(
0 commit comments