Skip to content

Commit e3a1b33

Browse files
committed
fix: clippy
1 parent 6840e92 commit e3a1b33

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

crates/op-rbuilder/src/builders/context.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,7 @@ impl<ExtraCtx: Debug + Default> OpPayloadBuilderCtx<ExtraCtx> {
429429
// Note that we need to use the Option to signal whether the transaction comes from a bundle,
430430
// otherwise, we would exclude all transactions that are not in the reverted hashes.
431431
let is_bundle_tx = reverted_hashes.is_some();
432-
let exclude_reverting_txs =
433-
is_bundle_tx && !reverted_hashes.unwrap().contains(&tx_hash);
432+
let exclude_reverting_txs = is_bundle_tx && !reverted_hashes.unwrap().contains(tx_hash);
434433

435434
let log_txn = |result: TxnExecutionResult| {
436435
debug!(

0 commit comments

Comments
 (0)