cmd/geth: tidied up the source

This commit is contained in:
Kenji Siu 2016-11-11 17:54:59 +08:00 committed by Péter Szilágyi
parent f84c7d474b
commit 9b8fa2449f
No known key found for this signature in database
GPG key ID: 119A76381CCB7DD2

View file

@ -59,18 +59,23 @@ func init() {
app.HideVersion = true // we have a command to print the version app.HideVersion = true // we have a command to print the version
app.Copyright = "Copyright 2013-2016 The go-ethereum Authors" app.Copyright = "Copyright 2013-2016 The go-ethereum Authors"
app.Commands = []cli.Command{ app.Commands = []cli.Command{
// See chaincmd.go:
initCommand, initCommand,
importCommand, importCommand,
exportCommand, exportCommand,
upgradedbCommand, upgradedbCommand,
removedbCommand, removedbCommand,
dumpCommand, dumpCommand,
// See monitorcmd.go:
monitorCommand, monitorCommand,
// See accountcmd.go:
accountCommand, accountCommand,
walletCommand, walletCommand,
// See consolecmd.go:
consoleCommand, consoleCommand,
attachCommand, attachCommand,
javascriptCommand, javascriptCommand,
// See misccmd.go:
makedagCommand, makedagCommand,
versionCommand, versionCommand,
licenseCommand, licenseCommand,