aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/config.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-05-04 18:31:09 +0800
committerGitHub <noreply@github.com>2017-05-04 18:31:09 +0800
commit881df0e6296520c2a230c5aaad96f2e1ba721d87 (patch)
treed9eb4471eca68e2fc026156b34ec2691cc05407b /cmd/geth/config.go
parent1c2f6f5597a6815f7ddca6374acb35e1ea1b0407 (diff)
parent81d6ec908ad42e4de3327e461f91e6fc8d33a468 (diff)
downloaddexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar.gz
dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar.zst
dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.zip
Merge pull request #14413 from bas-vk/cli-chain-mngt
Migrate remaining flags/command to new style
Diffstat (limited to 'cmd/geth/config.go')
-rw-r--r--cmd/geth/config.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/geth/config.go b/cmd/geth/config.go
index 8d47159b2..b76da3042 100644
--- a/cmd/geth/config.go
+++ b/cmd/geth/config.go
@@ -38,10 +38,11 @@ import (
var (
dumpConfigCommand = cli.Command{
- Action: dumpConfig,
+ Action: utils.MigrateFlags(dumpConfig),
Name: "dumpconfig",
Usage: "Show configuration values",
ArgsUsage: "",
+ Flags: append(nodeFlags, rpcFlags...),
Category: "MISCELLANEOUS COMMANDS",
Description: `The dumpconfig command shows configuration values.`,
}