mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-19 11:20:45 +00:00
Update gethclient_test.go
This commit is contained in:
parent
7c45ea01ad
commit
49bac61855
1 changed files with 0 additions and 36 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue