You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/evm/internal/t8ntool/flags.go
+8-10
Original file line number
Diff line number
Diff line change
@@ -28,12 +28,15 @@ import (
28
28
var (
29
29
TraceFlag=&cli.BoolFlag{
30
30
Name: "trace",
31
-
Usage: "Output full trace logs to files <txhash>.jsonl",
31
+
Usage: "Configures the use of the JSON opcode tracer. This tracer emits traces to files as trace-<txIndex>-<txHash>.jsonl",
32
32
}
33
-
TraceDisableMemoryFlag=&cli.BoolFlag{
34
-
Name: "trace.nomemory",
35
-
Value: true,
36
-
Usage: "Disable full memory dump in traces (deprecated)",
33
+
TraceTracerFlag=&cli.StringFlag{
34
+
Name: "trace.tracer",
35
+
Usage: "Configures the use of a custom tracer, e.g native or js tracers. Examples are callTracer and 4byteTracer. These tracers emit results into files as trace-<txIndex>-<txHash>.json",
36
+
}
37
+
TraceTracerConfigFlag=&cli.StringFlag{
38
+
Name: "trace.jsonconfig",
39
+
Usage: "The configurations for the custom tracer specified by --trace.tracer. If provided, must be in JSON format",
37
40
}
38
41
TraceEnableMemoryFlag=&cli.BoolFlag{
39
42
Name: "trace.memory",
@@ -43,11 +46,6 @@ var (
43
46
Name: "trace.nostack",
44
47
Usage: "Disable stack output in traces",
45
48
}
46
-
TraceDisableReturnDataFlag=&cli.BoolFlag{
47
-
Name: "trace.noreturndata",
48
-
Value: true,
49
-
Usage: "Disable return data output in traces (deprecated)",
0 commit comments