Compare commits

...

8 Commits

Author SHA1 Message Date
bf324bd24b VERSION, cmd/geth: bumped version number 1.3.6 2016-04-01 12:12:59 +02:00
a2e1e5c6a0 [release/1.3.6]: cmd/utils: removed password line endings when not using liner.
(cherry picked from commit 6f30034413)
2016-04-01 12:10:02 +02:00
506c927791 Merge pull request #2343 from obscuren/issue-templates-master
templates: added issue template
2016-03-14 23:46:04 +01:00
c0673eefb1 templates: added issue template
(cherry picked from commit a0e2e22a4f)
2016-03-14 23:43:11 +01:00
34b622a248 Merge pull request #2287 from obscuren/release/1.3.5
Release/1.3.5
2016-03-03 15:22:12 +01:00
cab802b40f VERSION, cmd/geth: bumped version 1.3.5 2016-03-03 15:10:48 +01:00
869d9792b3 [release/1.3.5] eth: forward empty body responses to the downlaoder
(cherry picked from commit ae4982a365)
2016-03-03 15:10:32 +01:00
d3f8b763bf VERSION: bumped version to 1.3.4 2016-02-29 20:57:48 +01:00
6 changed files with 29 additions and 4 deletions

20
.github/ISSUE_TEMPLATE.md vendored Normal file
View 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]
````

View File

@ -1 +1 @@
1.3.3
1.3.6

View File

@ -48,10 +48,10 @@ import (
const (
ClientIdentifier = "Geth"
Version = "1.3.4"
Version = "1.3.6"
VersionMajor = 1
VersionMinor = 3
VersionPatch = 4
VersionPatch = 6
)
var (

View File

@ -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
}

View File

@ -491,7 +491,11 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
uncles[i] = body.Uncles
}
// Filter out any explicitly requested bodies, deliver the rest to the downloader
if trasactions, uncles := pm.fetcher.FilterBodies(trasactions, uncles, time.Now()); len(trasactions) > 0 || len(uncles) > 0 {
filter := len(trasactions) > 0 || len(uncles) > 0
if filter {
trasactions, uncles = pm.fetcher.FilterBodies(trasactions, uncles, time.Now())
}
if len(trasactions) > 0 || len(uncles) > 0 || !filter {
err := pm.downloader.DeliverBodies(p.id, trasactions, uncles)
if err != nil {
glog.V(logger.Debug).Infoln(err)