mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-16 01:40:44 +00:00
* add explicit note about typing exit in console * Add note about typing exit as alternative Co-authored-by: Thad Guidry <thadguidry@gmail.com>
This commit is contained in:
parent
271687e463
commit
5e9db6066d
2 changed files with 3 additions and 3 deletions
|
|
@ -66,7 +66,7 @@ at block: 0 ({{niltime}})
|
||||||
datadir: {{.Datadir}}
|
datadir: {{.Datadir}}
|
||||||
modules: {{apis}}
|
modules: {{apis}}
|
||||||
|
|
||||||
To exit, press ctrl-d
|
To exit, press ctrl-d or type exit
|
||||||
> {{.InputLine "exit"}}
|
> {{.InputLine "exit"}}
|
||||||
`)
|
`)
|
||||||
XDC.ExpectExit()
|
XDC.ExpectExit()
|
||||||
|
|
@ -156,7 +156,7 @@ at block: 0 ({{niltime}}){{if ipc}}
|
||||||
datadir: {{datadir}}{{end}}
|
datadir: {{datadir}}{{end}}
|
||||||
modules: {{apis}}
|
modules: {{apis}}
|
||||||
|
|
||||||
To exit, press ctrl-d
|
To exit, press ctrl-d or type exit
|
||||||
> {{.InputLine "exit" }}
|
> {{.InputLine "exit" }}
|
||||||
`)
|
`)
|
||||||
attach.ExpectExit()
|
attach.ExpectExit()
|
||||||
|
|
|
||||||
|
|
@ -320,7 +320,7 @@ func (c *Console) Welcome() {
|
||||||
sort.Strings(modules)
|
sort.Strings(modules)
|
||||||
message += " modules: " + strings.Join(modules, " ") + "\n"
|
message += " modules: " + strings.Join(modules, " ") + "\n"
|
||||||
}
|
}
|
||||||
message += "\nTo exit, press ctrl-d"
|
message += "\nTo exit, press ctrl-d or type exit"
|
||||||
fmt.Fprintln(c.printer, message)
|
fmt.Fprintln(c.printer, message)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue