Skip to content

Commit

Permalink
simulators/ethereum/engine: remove requirement of tx to put back in m…
Browse files Browse the repository at this point in the history
…empool
  • Loading branch information
marioevz committed Oct 26, 2023
1 parent 2299a69 commit 442a723
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion simulators/ethereum/engine/suites/engine/reorg.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 442a723

Please sign in to comment.