mirror of https://github.com/status-im/op-geth.git
cmd/geth: clarify dumpconfig options (#26729)
Clarifies the documentation around dumpconfi Signed-off-by: Sungwoo Kim <git@sung-woo.kim>
This commit is contained in:
parent
13ef21d467
commit
7d4db69607
|
@ -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{
|
||||||
|
|
Loading…
Reference in New Issue