aboutsummaryrefslogtreecommitdiffstats
path: root/eth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-29 04:34:08 +0800
committerobscuren <geffobscura@gmail.com>2015-01-29 04:34:08 +0800
commit1337a8dfb11160d67db410b71af92a02d6b232f5 (patch)
tree4d2b348b599706dd25304567810743b07e2b3ac2 /eth
parent3440a8a0bfd7fbb3fd04c034356700522dec9dd4 (diff)
downloaddexon-1337a8dfb11160d67db410b71af92a02d6b232f5.tar
dexon-1337a8dfb11160d67db410b71af92a02d6b232f5.tar.gz
dexon-1337a8dfb11160d67db410b71af92a02d6b232f5.tar.bz2
dexon-1337a8dfb11160d67db410b71af92a02d6b232f5.tar.lz
dexon-1337a8dfb11160d67db410b71af92a02d6b232f5.tar.xz
dexon-1337a8dfb11160d67db410b71af92a02d6b232f5.tar.zst
dexon-1337a8dfb11160d67db410b71af92a02d6b232f5.zip
upped pv
Diffstat (limited to 'eth')
-rw-r--r--eth/block_pool.go2
-rw-r--r--eth/protocol.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/eth/block_pool.go b/eth/block_pool.go
index b624d064a..97ae683c1 100644
--- a/eth/block_pool.go
+++ b/eth/block_pool.go
@@ -1098,7 +1098,7 @@ func (self *BlockPool) requestBlocks(attempts int, hashes [][]byte) {
poolLogger.Debugf("request %v missing blocks from %v/%v peers: chosen %v", len(hashes), repetitions, peerCount, indexes)
for _, peer := range self.peers {
if i == indexes[0] {
- poolLogger.Debugf("request %v missing blocks from peer %s", len(hashes), peer.id)
+ poolLogger.Debugf("request %v missing blocks [%x/%x] from peer %s", len(hashes), hashes[0][:4], hashes[len(hashes)-1][:4], peer.id)
peer.requestBlocks(hashes)
indexes = indexes[1:]
if len(indexes) == 0 {
diff --git a/eth/protocol.go b/eth/protocol.go
index 24a0f0a8e..68c52b7ce 100644
--- a/eth/protocol.go
+++ b/eth/protocol.go
@@ -13,7 +13,7 @@ import (
)
const (
- ProtocolVersion = 51
+ ProtocolVersion = 52
NetworkId = 0
ProtocolLength = uint64(8)
ProtocolMaxMsgSize = 10 * 1024 * 1024