mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-16 14:44:41 +00:00
cmd/evm: fix trace.noreturndata usage string (#34731)
`trace.noreturndata` is documented as "enable return data output" but the flag name/value imply it disables return data. This is confusing for users and likely inverted wording. Update the Usage string to reflect the actual behavior (disable return data output).
This commit is contained in:
parent
d07a946a5b
commit
b1baab4427
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ var (
|
|||
Name: "trace.noreturndata",
|
||||
Aliases: []string{"noreturndata"},
|
||||
Value: true,
|
||||
Usage: "enable return data output",
|
||||
Usage: "disable return data output",
|
||||
Category: traceCategory,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue