mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
commit
9e323d65b2
3 changed files with 4 additions and 3 deletions
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
|||
1.3.5
|
||||
1.3.6
|
||||
|
|
|
|||
|
|
@ -48,10 +48,10 @@ import (
|
|||
|
||||
const (
|
||||
ClientIdentifier = "Geth"
|
||||
Version = "1.3.5"
|
||||
Version = "1.3.6"
|
||||
VersionMajor = 1
|
||||
VersionMinor = 3
|
||||
VersionPatch = 5
|
||||
VersionPatch = 6
|
||||
)
|
||||
|
||||
var (
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ func PromptPassword(prompt string, warnTerm bool) (string, error) {
|
|||
}
|
||||
fmt.Print(prompt)
|
||||
input, err := bufio.NewReader(os.Stdin).ReadString('\n')
|
||||
input = strings.TrimRight(input, "\r\n")
|
||||
fmt.Println()
|
||||
return input, err
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue