Update gethclient_test.go

This commit is contained in:
Ragnar 2025-05-06 18:12:24 +02:00 committed by Sina Mahmoodi
parent 7c45ea01ad
commit 49bac61855

View file

@ -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