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:
Daniel Liu 2026-04-16 16:16:53 +08:00 committed by GitHub
parent d07a946a5b
commit b1baab4427
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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