Unverified Commit 7d4db696 authored by Sungwoo Kim's avatar Sungwoo Kim Committed by GitHub

cmd/geth: clarify dumpconfig options (#26729)

Clarifies the documentation around dumpconfi
Signed-off-by: 's avatarSungwoo Kim <git@sung-woo.kim>
parent 13ef21d4
...@@ -47,10 +47,10 @@ var ( ...@@ -47,10 +47,10 @@ var (
dumpConfigCommand = &cli.Command{ dumpConfigCommand = &cli.Command{
Action: dumpConfig, Action: dumpConfig,
Name: "dumpconfig", Name: "dumpconfig",
Usage: "Show configuration values", Usage: "Export configuration values in a TOML format",
ArgsUsage: "", ArgsUsage: "<dumpfile (optional)>",
Flags: flags.Merge(nodeFlags, rpcFlags), Flags: flags.Merge(nodeFlags, rpcFlags),
Description: `The dumpconfig command shows configuration values.`, Description: `Export configuration values in TOML format (to stdout by default).`,
} }
configFileFlag = &cli.StringFlag{ configFileFlag = &cli.StringFlag{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment