Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions op-e2e/actions/upgrades/dencun_fork_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func TestDencunBlobTxRPC(gt *testing.T) {
cl := engine.EthClient()
tx := aliceSimpleBlobTx(t, dp)
err := cl.SendTransaction(context.Background(), tx)
require.NoError(t, err, "must accept blob tx via RPC")
require.ErrorContains(t, err, "transaction type not supported")
}

// TestDencunBlobTxInTxPool tries to insert a blob tx directly into the tx pool, it should not be accepted.
Expand All @@ -217,7 +217,7 @@ func TestDencunBlobTxInTxPool(gt *testing.T) {
engine := newEngine(t, sd, log)
tx := aliceSimpleBlobTx(t, dp)
errs := engine.Eth.TxPool().Add([]*types.Transaction{tx}, true, true)
require.NoError(t, errs[0], "must accept blob tx In tx pool")
require.ErrorContains(t, errs[0], "transaction type not supported")
}

// TestDencunBlobTxInclusion tries to send a Blob tx to the L2 engine, it should not be accepted.
Expand All @@ -235,5 +235,5 @@ func TestDencunBlobTxInclusion(gt *testing.T) {

sequencer.ActL2StartBlock(t)
err := engine.EngineApi.IncludeTx(tx, dp.Addresses.Alice)
require.NoError(t, err, "must inlcude blob tx")
require.ErrorContains(t, err, "invalid L2 block (tx 1): failed to apply transaction to L2 block (tx 1): transaction type not supported")
}