diff --git a/simulators/ethereum/engine/suites/engine/reorg.go b/simulators/ethereum/engine/suites/engine/reorg.go index 9836d2011b..8f685721a5 100644 --- a/simulators/ethereum/engine/suites/engine/reorg.go +++ b/simulators/ethereum/engine/suites/engine/reorg.go @@ -373,7 +373,10 @@ func (spec TransactionReOrgTest) Execute(t *test.Env) { } } - if spec.Scenario == TransactionReOrgScenarioReOrgBackIn { + if spec.Scenario == TransactionReOrgScenarioReOrgBackIn && i > 0 { + // Reasoning: Most of the clients do not re-add blob transactions to the pool + // after a re-org, so we need to wait until the next tx is sent to actually + // verify. tx = nextTx }