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 e5c72dc commit 83089b4Copy full SHA for 83089b4
crates/op-rbuilder/src/builders/context.rs
@@ -378,8 +378,7 @@ impl<ExtraCtx: Debug + Default> OpPayloadBuilderCtx<ExtraCtx> {
378
// Note that we need to use the Option to signal whether the transaction comes from a bundle,
379
// otherwise, we would exclude all transactions that are not in the reverted hashes.
380
let is_bundle_tx = reverted_hashes.is_some();
381
- let exclude_reverting_txs =
382
- is_bundle_tx && !reverted_hashes.unwrap().contains(&tx_hash);
+ let exclude_reverting_txs = is_bundle_tx && !reverted_hashes.unwrap().contains(tx_hash);
383
384
let log_txn = |result: TxnExecutionResult| {
385
debug!(
0 commit comments