diff --git a/ethclient/gethclient/gethclient_test.go b/ethclient/gethclient/gethclient_test.go index 309ee53ef4..eedbbfc1cf 100644 --- a/ethclient/gethclient/gethclient_test.go +++ b/ethclient/gethclient/gethclient_test.go @@ -161,18 +161,6 @@ func TestGethClient(t *testing.T) { }, { "TestCallContractWithBlockOverrides", func(t *testing.T) { testCallContractWithBlockOverrides(t, client) }, - }, { - "TestTraceTransaction", - func(t *testing.T) { testTraceTransaction(t, client) }, - }, { - "TestTraceCall", - func(t *testing.T) { testTraceCall(t, client) }, - }, { - "TestTraceBlock", - func(t *testing.T) { testTraceBlock(t, client) }, - }, { - "TestTraceChain", - func(t *testing.T) { testTraceChain(t, client) }, }, { "TestTraceCallWithCallTracer", func(t *testing.T) { testTraceCallWithCallTracer(t, client) }, @@ -639,30 +627,6 @@ func testCallContractWithBlockOverrides(t *testing.T, client *rpc.Client) { } } -func testTraceTransaction(t *testing.T, client *rpc.Client) { - // These tests for tracing cannot be fully executed - // as they require the debug API to be enabled in the test environment - t.Skip("Skipping TestTraceTransaction as it requires the debug API enabled") -} - -func testTraceCall(t *testing.T, client *rpc.Client) { - // These tests for tracing cannot be fully executed - // as they require the debug API to be enabled in the test environment - t.Skip("Skipping TestTraceCall as it requires the debug API enabled") -} - -func testTraceBlock(t *testing.T, client *rpc.Client) { - // These tests for tracing cannot be fully executed - // as they require the debug API to be enabled in the test environment - t.Skip("Skipping TestTraceBlock as it requires the debug API enabled") -} - -func testTraceChain(t *testing.T, client *rpc.Client) { - // These tests for tracing cannot be fully executed - // as they require the debug API to be enabled in the test environment - t.Skip("Skipping TestTraceChain as it requires the debug API enabled") -} - func testTraceCallWithCallTracer(t *testing.T, client *rpc.Client) { // These tests for tracing cannot be fully executed // as they require the debug API to be enabled in the test environment