Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf324bd24b | ||
|
|
a2e1e5c6a0 | ||
|
|
506c927791 | ||
|
|
c0673eefb1 |
20
.github/ISSUE_TEMPLATE.md
vendored
Normal file
20
.github/ISSUE_TEMPLATE.md
vendored
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
#### System information
|
||||||
|
|
||||||
|
Geth version: `geth version`
|
||||||
|
OS & Version: Windows/Linux/OSX
|
||||||
|
Commit hash : (if `develop`)
|
||||||
|
|
||||||
|
#### Expected behaviour
|
||||||
|
|
||||||
|
|
||||||
|
#### Actual behaviour
|
||||||
|
|
||||||
|
|
||||||
|
#### Steps to reproduce the behaviour
|
||||||
|
|
||||||
|
|
||||||
|
#### Backtrace
|
||||||
|
|
||||||
|
````
|
||||||
|
[backtrace]
|
||||||
|
````
|
||||||
@@ -48,10 +48,10 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
ClientIdentifier = "Geth"
|
ClientIdentifier = "Geth"
|
||||||
Version = "1.3.5"
|
Version = "1.3.6"
|
||||||
VersionMajor = 1
|
VersionMajor = 1
|
||||||
VersionMinor = 3
|
VersionMinor = 3
|
||||||
VersionPatch = 5
|
VersionPatch = 6
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|||||||
@@ -91,6 +91,7 @@ func PromptPassword(prompt string, warnTerm bool) (string, error) {
|
|||||||
}
|
}
|
||||||
fmt.Print(prompt)
|
fmt.Print(prompt)
|
||||||
input, err := bufio.NewReader(os.Stdin).ReadString('\n')
|
input, err := bufio.NewReader(os.Stdin).ReadString('\n')
|
||||||
|
input = strings.TrimRight(input, "\r\n")
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
return input, err
|
return input, err
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user