mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
cmd/evm: flag description
Signed-off-by: jsvisa <delweng@gmail.com>
This commit is contained in:
parent
2d1f7eb19e
commit
7c406dbce5
1 changed files with 3 additions and 3 deletions
|
|
@ -28,14 +28,14 @@ import (
|
|||
var (
|
||||
TraceFlag = &cli.BoolFlag{
|
||||
Name: "trace",
|
||||
Usage: "Output full trace logs to files <txhash>.jsonl",
|
||||
Usage: "Output full trace logs to files trace-<txIndex>-<txhash>.jsonl",
|
||||
}
|
||||
TraceTracerFlag = &cli.StringFlag{
|
||||
Name: "trace.tracer",
|
||||
Usage: "The type of tracer. It could be callTracer or prestateTracer",
|
||||
Usage: "The type of tracer. It could be native or js tracers, eg: callTracer,4byteTracer",
|
||||
}
|
||||
TraceTracerConfigFlag = &cli.StringFlag{
|
||||
Name: "trace.tracer.config",
|
||||
Name: "trace.jsonconfig",
|
||||
Usage: "The configurations of --trace.tracer, in JSON encoded format",
|
||||
}
|
||||
TraceEnableMemoryFlag = &cli.BoolFlag{
|
||||
|
|
|
|||
Loading…
Reference in a new issue