From e46ca3873f8724637c9b11b0a9e4c64ee3487e15 Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Wed, 14 May 2025 16:45:36 +0530 Subject: [PATCH] ethclient/simulated: skipped TestTransactionRollbackBehavior --- ethclient/simulated/rollback_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ethclient/simulated/rollback_test.go b/ethclient/simulated/rollback_test.go index 57c59496d5..02b48533df 100644 --- a/ethclient/simulated/rollback_test.go +++ b/ethclient/simulated/rollback_test.go @@ -29,6 +29,7 @@ import ( // TestTransactionRollbackBehavior tests that calling Rollback on the simulated backend doesn't prevent subsequent // addition of new transactions func TestTransactionRollbackBehavior(t *testing.T) { + t.Skip("bor: rollback is for beacon chain") sim := NewBackend( types.GenesisAlloc{ testAddr: {Balance: big.NewInt(10000000000000000)},