Skip to content
This repository has been archived by the owner on Aug 8, 2018. It is now read-only.

Parallel block download(Updated) #262

Open
wants to merge 23 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
parallel block synco
rairyx committed Jul 18, 2017

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 2ca5c6eed9dd030f3255159d2603bac9bbfe4bd2
3 changes: 1 addition & 2 deletions pyethapp/eth_protocol.py
Original file line number Diff line number Diff line change
@@ -56,7 +56,6 @@ class ETHProtocolError(SubProtocolError):


class ETHProtocol(BaseProtocol):

"""
DEV Ethereum Wire Protocol
https://github.com/ethereum/wiki/wiki/Ethereum-Wire-Protocol
@@ -67,7 +66,7 @@ class ETHProtocol(BaseProtocol):
max_cmd_id = 15 # FIXME
name = 'eth'
version = 62

idle = True
max_getblocks_count = 128
max_getblockheaders_count = 192

Loading