cmd/puppeth: remove wrapping loop in single reads

pull/14897/head
Péter Szilágyi 7 years ago
parent 0cc9b8791e
commit 455fcc8309
No known key found for this signature in database
GPG Key ID: E9AE538CEDF8293D
  1. 4
      cmd/puppeth/wizard.go

@ -106,7 +106,6 @@ func (w *wizard) readString() string {
// readDefaultString reads a single line from stdin, trimming if from spaces. If // readDefaultString reads a single line from stdin, trimming if from spaces. If
// an empty line is entered, the default value is returned. // an empty line is entered, the default value is returned.
func (w *wizard) readDefaultString(def string) string { func (w *wizard) readDefaultString(def string) string {
for {
fmt.Printf("> ") fmt.Printf("> ")
text, err := w.in.ReadString('\n') text, err := w.in.ReadString('\n')
if err != nil { if err != nil {
@ -117,7 +116,6 @@ func (w *wizard) readDefaultString(def string) string {
} }
return def return def
} }
}
// readInt reads a single line from stdin, trimming if from spaces, enforcing it // readInt reads a single line from stdin, trimming if from spaces, enforcing it
// to parse into an integer. // to parse into an integer.
@ -207,7 +205,6 @@ func (w *wizard) readDefaultFloat(def float64) float64 {
// readPassword reads a single line from stdin, trimming it from the trailing new // readPassword reads a single line from stdin, trimming it from the trailing new
// line and returns it. The input will not be echoed. // line and returns it. The input will not be echoed.
func (w *wizard) readPassword() string { func (w *wizard) readPassword() string {
for {
fmt.Printf("> ") fmt.Printf("> ")
text, err := terminal.ReadPassword(int(syscall.Stdin)) text, err := terminal.ReadPassword(int(syscall.Stdin))
if err != nil { if err != nil {
@ -216,7 +213,6 @@ func (w *wizard) readPassword() string {
fmt.Println() fmt.Println()
return string(text) return string(text)
} }
}
// readAddress reads a single line from stdin, trimming if from spaces and converts // readAddress reads a single line from stdin, trimming if from spaces and converts
// it to an Ethereum address. // it to an Ethereum address.

Loading…
Cancel
Save