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:
Daniel Liu 2026-04-16 14:21:08 +08:00
parent 0b35ad95f5
commit 36a890a6ca

View file

@ -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,
}