Skip to content

Commit

Permalink
fix: ensure we're skipping inalid tx kinds
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Aug 5, 2024
1 parent c3b334b commit fb261f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/optimism/payload/src/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,8 @@ where

// A sequencer's block should never contain blob or deposit transactions from the pool.
if pool_tx.is_eip4844() || pool_tx.tx_type() == TxType::Deposit as u8 {
best_txs.mark_invalid(&pool_tx)
best_txs.mark_invalid(&pool_tx);
continue
}

// check if the job was cancelled, if so we can exit early
Expand Down

0 comments on commit fb261f0

Please sign in to comment.