mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-26 14:46:42 +00:00
cmd/geth: tidied up the source
This commit is contained in:
parent
cca6deead8
commit
78ca74d198
1 changed files with 5 additions and 0 deletions
|
|
@ -56,18 +56,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,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue