Update gethclient_test.go

This commit is contained in:
Ragnar 2025-03-27 22:36:25 +01:00 committed by Sina Mahmoodi
parent 078f7b1bf1
commit 7c45ea01ad

View file

@ -640,37 +640,37 @@ func testCallContractWithBlockOverrides(t *testing.T, client *rpc.Client) {
} }
func testTraceTransaction(t *testing.T, client *rpc.Client) { func testTraceTransaction(t *testing.T, client *rpc.Client) {
// Эти тесты для трассировки не будут полностью выполняться, // These tests for tracing cannot be fully executed
// так как у нас нет полной реализации API трассировки в тестовой среде // as they require the debug API to be enabled in the test environment
t.Skip("Skipping TestTraceTransaction as it requires the debug API enabled") t.Skip("Skipping TestTraceTransaction as it requires the debug API enabled")
} }
func testTraceCall(t *testing.T, client *rpc.Client) { func testTraceCall(t *testing.T, client *rpc.Client) {
// Эти тесты для трассировки не будут полностью выполняться, // These tests for tracing cannot be fully executed
// так как у нас нет полной реализации API трассировки в тестовой среде // as they require the debug API to be enabled in the test environment
t.Skip("Skipping TestTraceCall as it requires the debug API enabled") t.Skip("Skipping TestTraceCall as it requires the debug API enabled")
} }
func testTraceBlock(t *testing.T, client *rpc.Client) { func testTraceBlock(t *testing.T, client *rpc.Client) {
// Эти тесты для трассировки не будут полностью выполняться, // These tests for tracing cannot be fully executed
// так как у нас нет полной реализации API трассировки в тестовой среде // as they require the debug API to be enabled in the test environment
t.Skip("Skipping TestTraceBlock as it requires the debug API enabled") t.Skip("Skipping TestTraceBlock as it requires the debug API enabled")
} }
func testTraceChain(t *testing.T, client *rpc.Client) { func testTraceChain(t *testing.T, client *rpc.Client) {
// Эти тесты для трассировки не будут полностью выполняться, // These tests for tracing cannot be fully executed
// так как у нас нет полной реализации API трассировки в тестовой среде // as they require the debug API to be enabled in the test environment
t.Skip("Skipping TestTraceChain as it requires the debug API enabled") t.Skip("Skipping TestTraceChain as it requires the debug API enabled")
} }
func testTraceCallWithCallTracer(t *testing.T, client *rpc.Client) { func testTraceCallWithCallTracer(t *testing.T, client *rpc.Client) {
// Эти тесты для трассировки не будут полностью выполняться, // These tests for tracing cannot be fully executed
// так как у нас нет полной реализации API трассировки в тестовой среде // as they require the debug API to be enabled in the test environment
t.Skip("Skipping TestTraceCallWithCallTracer as it requires the debug API enabled") t.Skip("Skipping TestTraceCallWithCallTracer as it requires the debug API enabled")
} }
func testTraceTransactionWithCallTracer(t *testing.T, client *rpc.Client) { func testTraceTransactionWithCallTracer(t *testing.T, client *rpc.Client) {
// Эти тесты для трассировки не будут полностью выполняться, // These tests for tracing cannot be fully executed
// так как у нас нет полной реализации API трассировки в тестовой среде // as they require the debug API to be enabled in the test environment
t.Skip("Skipping TestTraceTransactionWithCallTracer as it requires the debug API enabled") t.Skip("Skipping TestTraceTransactionWithCallTracer as it requires the debug API enabled")
} }