mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
clef: minor ui quirks
This commit is contained in:
parent
6045173044
commit
644bdb467b
2 changed files with 2 additions and 1 deletions
|
|
@ -218,8 +218,8 @@ type (
|
||||||
Info map[string]interface{} `json:"info"`
|
Info map[string]interface{} `json:"info"`
|
||||||
}
|
}
|
||||||
UserInputRequest struct {
|
UserInputRequest struct {
|
||||||
Prompt string `json:"prompt"`
|
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
Prompt string `json:"prompt"`
|
||||||
IsPassword bool `json:"isPassword"`
|
IsPassword bool `json:"isPassword"`
|
||||||
}
|
}
|
||||||
UserInputResponse struct {
|
UserInputResponse struct {
|
||||||
|
|
|
||||||
|
|
@ -90,6 +90,7 @@ func (ui *CommandlineUI) OnInputRequired(info UserInputRequest) (UserInputRespon
|
||||||
|
|
||||||
fmt.Printf("## %s\n\n%s\n", info.Title, info.Prompt)
|
fmt.Printf("## %s\n\n%s\n", info.Title, info.Prompt)
|
||||||
if info.IsPassword {
|
if info.IsPassword {
|
||||||
|
fmt.Printf("> ")
|
||||||
text, err := terminal.ReadPassword(int(os.Stdin.Fd()))
|
text, err := terminal.ReadPassword(int(os.Stdin.Fd()))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Error("Failed to read password", "err", err)
|
log.Error("Failed to read password", "err", err)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue