diff --git a/VERSION b/VERSION index d0149fef7..80e78df68 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.4 +1.3.5 diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 76abf45f0..dab2d8fc0 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -48,10 +48,10 @@ import ( const ( ClientIdentifier = "Geth" - Version = "1.3.4" + Version = "1.3.5" VersionMajor = 1 VersionMinor = 3 - VersionPatch = 4 + VersionPatch = 5 ) var ( diff --git a/eth/handler.go b/eth/handler.go index d1a6c040c..96bb554dd 100644 --- a/eth/handler.go +++ b/eth/handler.go @@ -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)