Skip to content

Commit 83089b4

Browse files
committed
fix: clippy
1 parent e5c72dc commit 83089b4

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
@@ -378,8 +378,7 @@ impl<ExtraCtx: Debug + Default> OpPayloadBuilderCtx<ExtraCtx> {
378378
// Note that we need to use the Option to signal whether the transaction comes from a bundle,
379379
// otherwise, we would exclude all transactions that are not in the reverted hashes.
380380
let is_bundle_tx = reverted_hashes.is_some();
381-
let exclude_reverting_txs =
382-
is_bundle_tx && !reverted_hashes.unwrap().contains(&tx_hash);
381+
let exclude_reverting_txs = is_bundle_tx && !reverted_hashes.unwrap().contains(tx_hash);
383382

384383
let log_txn = |result: TxnExecutionResult| {
385384
debug!(

0 commit comments

Comments
 (0)