eth/tracers: make native calltracer default (#23867)

This commit is contained in:
Sina Mahmoodi
2021-11-08 14:08:12 +01:00
committed by GitHub
parent 851256e856
commit 787a3b185c
6 changed files with 16 additions and 16 deletions

View File

@@ -61,12 +61,12 @@ func TestCallTracerLegacy(t *testing.T) {
testCallTracer("callTracerLegacy", "call_tracer_legacy", t)
}
func TestCallTracer(t *testing.T) {
testCallTracer("callTracer", "call_tracer", t)
func TestCallTracerJs(t *testing.T) {
testCallTracer("callTracerJs", "call_tracer", t)
}
func TestCallTracerNative(t *testing.T) {
testCallTracer("callTracerNative", "call_tracer", t)
testCallTracer("callTracer", "call_tracer", t)
}
func testCallTracer(tracerName string, dirPath string, t *testing.T) {