diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-05-04 18:31:09 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-04 18:31:09 +0800 |
commit | 881df0e6296520c2a230c5aaad96f2e1ba721d87 (patch) | |
tree | d9eb4471eca68e2fc026156b34ec2691cc05407b /cmd/geth/config.go | |
parent | 1c2f6f5597a6815f7ddca6374acb35e1ea1b0407 (diff) | |
parent | 81d6ec908ad42e4de3327e461f91e6fc8d33a468 (diff) | |
download | dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar.gz dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar.bz2 dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar.lz dexon-881df0e6296520c2a230c5aaad96f2e1ba721d87.tar.xz 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.go | 3 |
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.`, } |