mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-12 01:41:36 +00:00
cmd/evm: fix trace.noreturndata usage string
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
0b35ad95f5
commit
36a890a6ca
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ var (
|
||||||
Name: "trace.noreturndata",
|
Name: "trace.noreturndata",
|
||||||
Aliases: []string{"noreturndata"},
|
Aliases: []string{"noreturndata"},
|
||||||
Value: true,
|
Value: true,
|
||||||
Usage: "enable return data output",
|
Usage: "disable return data output",
|
||||||
Category: traceCategory,
|
Category: traceCategory,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue