Skip to content
This repository has been archived by the owner on Jul 1, 2021. It is now read-only.

ValueError: Separator is found, but chunk is longer than limit #638

Closed
carver opened this issue May 20, 2019 · 1 comment · Fixed by #642
Closed

ValueError: Separator is found, but chunk is longer than limit #638

carver opened this issue May 20, 2019 · 1 comment · Fixed by #642

Comments

@carver
Copy link
Contributor

carver commented May 20, 2019

py36-integration installed: apipkg==1.5,argh==0.26.2,asn1crypto==0.24.0,async-generator==1.10,async-lru==0.1.0,asyncio-cancel-token==0.1.0a2,atomicwrites==1.3.0,attrdict==2.0.1,attrs==19.1.0,backcall==0.1.0,bloom-filter==1.3,cached-property==1.5.1,cachetools==3.1.0,certifi==2019.3.9,cffi==1.12.3,chardet==3.0.4,coincurve==10.0.0,colorama==0.4.1,coverage==4.5.3,cryptography==2.6.1,cytoolz==0.9.0.1,decorator==4.4.0,docopt==0.6.2,eth-abi==1.3.0,eth-account==0.2.3,eth-bloom==1.0.3,eth-hash==0.2.0,eth-keyfile==0.5.1,eth-keys==0.2.2,eth-rlp==0.1.2,eth-typing==2.1.0,eth-utils==1.6.0,execnet==1.6.0,factory-boy==2.11.1,Faker==1.0.7,hexbytes==0.1.0,hypothesis==3.69.5,idna==2.8,ifaddr==0.1.6,ipython==6.5.0,ipython-genutils==0.2.0,jedi==0.13.3,jsonschema==3.0.1,lahja==0.12.0,lru-dict==1.1.6,lxml==4.3.3,more-itertools==7.0.0,mypy-extensions==0.4.1,netdisco==2.6.0,netifaces==0.10.9,parsimonious==0.8.1,parso==0.4.0,pathtools==0.1.2,pexpect==4.7.0,pickleshare==0.7.5,pluggy==0.7.1,plyvel==1.0.5,prompt-toolkit==1.0.16,ptyprocess==0.6.0,py==1.8.0,py-ecc==1.6.0,py-evm==0.2.0a43,pycparser==2.19,pycryptodome==3.8.1,pyethash==0.1.27,Pygments==2.4.0,pyrsistent==0.15.2,pysha3==1.0.2,pytest==3.6.4,pytest-asyncio==0.9.0,pytest-asyncio-network-simulator==0.1.0a2,pytest-cov==2.5.1,pytest-mock==1.10.4,pytest-watch==4.2.0,pytest-xdist==1.18.1,python-dateutil==2.8.0,python-snappy==0.5.4,PyYAML==5.1,requests==2.22.0,rlp==1.1.0,ruamel.yaml==0.15.96,simplegeneric==0.8.1,six==1.12.0,SQLAlchemy==1.3.3,ssz==0.1.0a8,termcolor==1.1.0,text-unidecode==1.2,toolz==0.9.0,traitlets==4.3.2,trie==1.4.0,-e git+git@github.com:ethereum/trinity.git@b00f56a5022c68b1aff2f695a0cf04bc5083da87#egg=trinity,typing-extensions==3.7.2,uPnPClient==0.0.8,urllib3==1.25.2,uvloop==0.11.2,watchdog==0.9.0,wcwidth==0.1.7,web3==4.4.1,websockets==5.0.1,zeroconf==0.22.0

What is wrong?

_________________________ test_logger[command1-False] __________________________
[gw0] linux -- Python 3.6.8 /home/circleci/repo/.tox/py36-integration/bin/python

async_process_runner = <trinity.tools.async_process_runner.AsyncProcessRunner object at 0x7efc3cbc79b0>
command = ('trinity', '-l=DEBUG2', '-l', 'p2p.discovery=ERROR')
expected_to_contain_log = False

    @pytest.mark.parametrize(
        'command, expected_to_contain_log',
        (
            (('trinity', '-l=DEBUG2'), True),
            # We expect not to contain it because we set the p2p.discovery logger to only log errors
            (('trinity', '-l=DEBUG2', '-l', 'p2p.discovery=ERROR'), False,)
        )
    )
    @pytest.mark.asyncio
    async def test_logger(async_process_runner, command, expected_to_contain_log):
        await async_process_runner.run(command, timeout_sec=30)
        actually_contains_log = await contains_all(async_process_runner.stderr, {
>           "DiscoveryProtocol  >>> ping",
        })

async_process_runner = <trinity.tools.async_process_runner.AsyncProcessRunner object at 0x7efc3cbc79b0>
command    = ('trinity', '-l=DEBUG2', '-l', 'p2p.discovery=ERROR')
expected_to_contain_log = False

tests/integration/test_trinity_cli.py:179: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
trinity/_utils/async_iter.py:14: in contains_all
    async for line in async_gen:
trinity/tools/async_process_runner.py:47: in stderr
    async for line in self._iterate_until_empty(self.proc.stderr.readline):
trinity/tools/async_process_runner.py:55: in _iterate_until_empty
    line = await awaitable_bytes_fn()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <StreamReader t=<ReadUnixTransport closed=False reading=True 0x7efc3cbd1388>>

    @coroutine
    def readline(self):
        """Read chunk of data from the stream until newline (b'\n') is found.
    
            On success, return chunk that ends with newline. If only partial
            line can be read due to EOF, return incomplete line without
            terminating newline. When EOF was reached while no bytes read, empty
            bytes object is returned.
    
            If limit is reached, ValueError will be raised. In that case, if
            newline was found, complete line including newline will be removed
            from internal buffer. Else, internal buffer will be cleared. Limit is
            compared against part of the line without newline.
    
            If stream was paused, this function will automatically resume it if
            needed.
            """
        sep = b'\n'
        seplen = len(sep)
        try:
            line = yield from self.readuntil(sep)
        except IncompleteReadError as e:
            return e.partial
        except LimitOverrunError as e:
            if self._buffer.startswith(sep, e.consumed):
                del self._buffer[:e.consumed + seplen]
            else:
                self._buffer.clear()
            self._maybe_resume_transport()
>           raise ValueError(e.args[0])
E           ValueError: Separator is found, but chunk is longer than limit

self       = <StreamReader t=<ReadUnixTransport closed=False reading=True 0x7efc3cbd1388>>
sep        = b'\n'
seplen     = 1

/usr/local/lib/python3.6/asyncio/streams.py:497: ValueError
----------------------------- Captured stdout call -----------------------------
b'   DEBUG  05-20 20:18:51               trinity  Logging initialized: PID=2826\n'
b'    INFO  05-20 20:18:51               trinity  \n'
b'      ______     _       _ __       \n'
b'     /_  __/____(_)___  (_) /___  __\n'
b'      / / / ___/ / __ \\/ / __/ / / /\n'
b'     / / / /  / / / / / / /_/ /_/ / \n'
b'    /_/ /_/  /_/_/ /_/_/\\__/\\__, /  \n'
b'                           /____/   \n'
b'    INFO  05-20 20:18:51               trinity  Started main process (pid=2826)\n'
b'    INFO  05-20 20:18:51               trinity  Trinity/0.1.0a23/linux/cpython3.6.8\n'
b'    INFO  05-20 20:18:51               trinity  Trinity DEBUG log file is created at /tmp/pyt--circleci/0/popen-gw0/test_logger_command1_False_0/t/mainnet/logs-eth1/trinity.log\n'
b'    INFO  05-20 20:18:52               trinity  Started DB server process (pid=2834)\n'
b'   DEBUG  05-20 20:18:52                  root  Logging initialized: PID=2834\n'
b'  DEBUG2  05-20 20:18:59             AccountDB  Persisting new state root: 0xd7f8974fb5ac78d9ac099b9ad5018bedc2ce0a72dad1827a1709da30580f0544\n'
b'    INFO  05-20 20:19:00               trinity  Started networking process (pid=2841)\n'
b'   DEBUG  05-20 20:19:00                  root  Logging initialized: PID=2841\n'
b"/home/circleci/repo/.tox/py36-integration/lib/python3.6/importlib/_bootstrap.py:219: ImportWarning: can't resolve package from __spec__ or __package__, falling back on __name__ and __path__\n"
b'  return f(*args, **kwds)\n'
b'    INFO  05-20 20:19:02  plugin(#SyncerPlugin)  Plugin started: Syncer Plugin\n'
b'  DEBUG2  05-20 20:19:02              FullNode  Running task <coroutine object Node.handle_network_id_requests at 0x7f08d9e490f8>\n'
b'  DEBUG2  05-20 20:19:02              FullNode  Running task <coroutine object BaseService.run at 0x7f08d9e491a8>\n'
b'    INFO  05-20 20:19:02            FullServer  Running server...\n'
b'    INFO  05-20 20:19:02           UPnPService  Setting up NAT portmap...\n'
b'    INFO  05-20 20:19:02  FastThenFullChainSyncer  Starting fast-sync; current head: <BlockHeader #0 d4e56740>\n'
b'  DEBUG2  05-20 20:19:02       FastChainSyncer  Running task <coroutine object BaseService.run at 0x7f08d9e49d58>\n'
b'  DEBUG2  05-20 20:19:02  ETHHeaderChainSyncer  Running task <coroutine object BaseService.run at 0x7f08da52f4c0>\n'
b'  DEBUG2  05-20 20:19:02  ETHHeaderChainSyncer  Running task <coroutine object BaseService.run at 0x7f08da52f570>\n'
b'  DEBUG2  05-20 20:19:02    ETHChainTipMonitor  Running task <coroutine object BaseChainTipMonitor._handle_msg_loop at 0x7f08da52fb48>\n'
b'  DEBUG2  05-20 20:19:02      HeaderMeatSyncer  Running task <coroutine object HeaderMeatSyncer._display_stats at 0x7f08da4dd048>\n'
b'  DEBUG2  05-20 20:19:02   FastChainBodySyncer  Running task <coroutine object FastChainBodySyncer._launch_prerequisite_tasks at 0x7f08da53d308>\n'
b'  DEBUG2  05-20 20:19:02   FastChainBodySyncer  Running task <coroutine object FastChainBodySyncer._assign_receipt_download_to_peers at 0x7f08da52f410>\n'
b'  DEBUG2  05-20 20:19:02   FastChainBodySyncer  Running task <coroutine object BaseBodyChainSyncer._assign_body_download_to_peers at 0x7f08da52f8e0>\n'
b'  DEBUG2  05-20 20:19:02   FastChainBodySyncer  Running task <coroutine object FastChainBodySyncer._persist_ready_blocks at 0x7f08da4cf048>\n'
b'  DEBUG2  05-20 20:19:02   FastChainBodySyncer  Running task <coroutine object FastChainBodySyncer._display_stats at 0x7f08da4cf150>\n'
b'    INFO  05-20 20:19:03  plugin(#JsonRpcServerPlugin)  Plugin started: JSON-RPC API (pid=2847)\n'
b'   DEBUG  05-20 20:19:03                  root  Logging initialized: PID=2847\n'
b'    INFO  05-20 20:19:03             IPCServer  IPC started at: /tmp/pyt--circleci/0/popen-gw0/test_logger_command1_False_0/t/mainnet/ipcs-eth1/jsonrpc.ipc\n'
b'    INFO  05-20 20:19:04  plugin(#NetworkDBPlugin)  Plugin started: Network Database (pid=2916)\n'
b'   DEBUG  05-20 20:19:04                  root  Logging initialized: PID=2916\n'
b'   DEBUG  05-20 20:19:04  ConnectionTrackerServer  Running ConnectionTrackerServer\n'
b'  DEBUG2  05-20 20:19:04  ConnectionTrackerServer  Running task <coroutine object ConnectionTrackerServer.handle_should_connect_to_requests at 0x7fb4de92bf10>\n'
b'  DEBUG2  05-20 20:19:04  ConnectionTrackerServer  Running task <coroutine object ConnectionTrackerServer.handle_blacklist_command at 0x7fb4de97b048>\n'
b'    INFO  05-20 20:19:05  plugin(#PeerDiscoveryPlugin)  Plugin started: Discovery (pid=2924)\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint networking connecting to other Endpoint bjson-rpc-api\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint bjson-rpc-api connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint networking connecting to other Endpoint bjson-rpc-api\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint bjson-rpc-api connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint networking connecting to other Endpoint network-db\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint bjson-rpc-api connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint network-db connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint bjson-rpc-api connecting to other Endpoint network-db\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint network-db connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint network-db connecting to other Endpoint bjson-rpc-api\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint network-db connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint network-db connecting to other Endpoint bjson-rpc-api\n'
b'   DEBUG  05-20 20:19:05                  root  Logging initialized: PID=2924\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint network-db connecting to other Endpoint discovery\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint bjson-rpc-api connecting to other Endpoint discovery\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint networking connecting to other Endpoint discovery\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint discovery connecting to other Endpoint networking\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint discovery connecting to other Endpoint bjson-rpc-api\n'
b'    INFO  05-20 20:19:05              Endpoint  EventBus Endpoint discovery connecting to other Endpoint network-db\n'
b'   DEBUG  05-20 20:19:07           UPnPService  Found 0 candidate NAT devices\n'
b'    INFO  05-20 20:19:07           UPnPService  No UPNP-enabled devices found\n'
b'    INFO  05-20 20:19:07            FullServer  enode://39af430323d892fddfa49c27475daba0dbf9e5ad9b9d508c708df77b8da0fd5ca346a05f4684f3f0c3ba2db64e56c7d89a3bff279e49103ef6eb88deacd05d85@0.0.0.0:30303\n'
b'    INFO  05-20 20:19:07            FullServer  network: 1\n'
b'    INFO  05-20 20:19:07            FullServer  peers: max_peers=25\n'
b'  DEBUG2  05-20 20:19:07            FullServer  Running task <coroutine object BaseService.run at 0x7f08da53d0f8>\n'
b'  DEBUG2  05-20 20:19:07            FullServer  Running task <coroutine object BaseService.run at 0x7f08da53d7d8>\n'
b'   DEBUG  05-20 20:19:07   PeerPoolEventServer  Running PeerPoolEventServer\n'
b'  DEBUG2  05-20 20:19:07            FullServer  Running task <coroutine object BaseService.run at 0x7f08d9e49780>\n'
b'  DEBUG2  05-20 20:19:07            FullServer  Running task <coroutine object BaseService.run at 0x7f08d9e498e0>\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Running task <coroutine object BasePeerPool.maybe_connect_more_peers at 0x7f08da53dba0>\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Running task <coroutine object BasePeerPool._periodically_report_stats at 0x7f08da429e60>\n'
b'    INFO  05-20 20:19:07           ETHPeerPool  Connected peers: 0 inbound, 0 outbound\n'
b'    INFO  05-20 20:19:07           ETHPeerPool  Peer subscribers: 4, longest queue: ETHChainTipMonitor(0)\n'
b'   DEBUG  05-20 20:19:07           ETHPeerPool  == Peer details == \n'
b'   DEBUG  05-20 20:19:07           ETHPeerPool  == End peer details == \n'
b'  DEBUG2  05-20 20:19:07   PeerPoolEventServer  Running task <coroutine object PeerPoolEventServer.handle_peer_count_requests at 0x7f08da438200>\n'
b'  DEBUG2  05-20 20:19:07   PeerPoolEventServer  Running task <coroutine object PeerPoolEventServer.accept_connect_commands at 0x7f08da438308>\n'
b'  DEBUG2  05-20 20:19:07   PeerPoolEventServer  Running task <coroutine object PeerPoolEventServer.handle_disconnect_peer_events at 0x7f08da438410>\n'
b'  DEBUG2  05-20 20:19:07      ETHRequestServer  Running task <coroutine object BaseRequestServer._handle_msg_loop at 0x7f08da438780>\n'
b'   DEBUG  05-20 20:19:07      HeaderMeatSyncer  Header Skeleton Gaps: active=0 queued=0 max=50\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Got candidates from backend <p2p.peer_backend.BootnodesPeerBackend object at 0x7f08da192908> ((<Node(0x3f1d12044546b76342d59d4a05532c14b85aa669704bfe1f864fe079415aa2c02d743e03218e57a33fb94523adb54032871a6c51b2cc5514cb7c7e35b3ed0a99@13.93.211.84:30303)>,))\n'
b'   DEBUG  05-20 20:19:07           ETHPeerPool  Initiating 1 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Got candidates from backend <p2p.peer_backend.DiscoveryPeerBackend object at 0x7f08da1928d0> ((<Node(0x1118980bf48b0a3640bdba04e0fe78b1add18e1cd99bf22d53daac1fd9972ad650df52176e7c7d89d1114cfef2bc23a2959aa54998a46afcf7d91809f0855082@52.74.57.123:30303)>, <Node(0x78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d@191.235.84.50:30303)>, <Node(0xddd81193df80128880232fc1deb45f72746019839589eeb642d3d44efbb8b2dda2c1a46a348349964a6066f8afb016eb2a8c0f3c66f32fadf4370a236a4b5286@52.231.202.145:30303)>, <Node(0x78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d@191.235.84.50:30303)>, <Node(0x669f45b66acf3b804c26ce13cfdd1f7e3d0ff4ed85060841b9af3af6dbfbacd05181e1c9363161446a307f3ca24e707856a01e4bf1eed5e1aefc14011a5c1c1c@52.74.57.123:30303)>, <Node(0xaa36fdf33dd030378a0168efe6ed7d5cc587fafa3cdd375854fe735a2e11ea3650ba29644e2db48368c46e1f60e716300ba49396cd63778bf8a818c09bded46f@13.93.211.84:30303)>, <Node(0xa979fb575495b8d6db44f750317d0f4622bf4c2aa3365d6af7c284339968eef29b69ad0dce72a4d8db5ebb4968de0e3bec910127f134779fbcb0cb6d3331163c@52.16.188.185:30303)>, <Node(0x158f8aab45f6d19c6cbf4a089c2670541a8da11978a2f90dbf6a502a4a3bab80d288afdbeb7ec0ef6d92de563767f3b1ea9e8e334ca711e9f8e2df5a0385e8e6@13.75.154.138:30303)>))\n'
b'   DEBUG  05-20 20:19:07           ETHPeerPool  Initiating 8 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0x3f1d@13.93.211.84)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0x1118@52.74.57.123)>\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0x3f1d@13.93.211.84)>...\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0x78de@191.235.84.50)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0x158f@13.75.154.138)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0xaa36@13.93.211.84)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0xddd8@52.231.202.145)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0xa979@52.16.188.185)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0x78de@191.235.84.50)>\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received should connect to request: <Node(0x669f@52.74.57.123)>\n'
b'   DEBUG  05-20 20:19:07   FastChainBodySyncer  (in progress, queued, max size) of bodies, receipts: [(0, 0, 2048), (0, 0, 4096)]. Write capacity? yes\n'
b'    INFO  05-20 20:19:07   FastChainBodySyncer  blks=0     txs=0      bps=0    tps=0     elapsed=5.1  head=#0 d4e5..8fa3  age=49y4m4w\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0x1118@52.74.57.123)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0x78de@191.235.84.50)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0x158f@13.75.154.138)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0xaa36@13.93.211.84)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0xddd8@52.231.202.145)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0xa979@52.16.188.185)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0x78de@191.235.84.50)>...\n'
b'  DEBUG2  05-20 20:19:07           ETHPeerPool  Connecting to <Node(0x669f@52.74.57.123)>...\n'
b'  DEBUG2  05-20 20:19:07             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c277d320>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0xa979@52.16.188.185)>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0xa979@52.16.188.185)>\n'
b'  DEBUG2  05-20 20:19:07               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:07               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:07           ETHPeerPool  Could not complete handshake with <Node(0xa979fb575495b8d6db44f750317d0f4622bf4c2aa3365d6af7c284339968eef29b69ad0dce72a4d8db5ebb4968de0e3bec910127f134779fbcb0cb6d3331163c@52.16.188.185:30303)>: TooManyPeersFailure('ETHPeer <Node(0xa979@52.16.188.185)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xa979@52.16.188.185)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:07     ConnectionTracker  <Node(0xa979@52.16.188.185)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:07             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08dc1c7a58>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0x78de@191.235.84.50)>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0x78de@191.235.84.50)>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c277d438>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0x78de@191.235.84.50)>\n'
b'  DEBUG2  05-20 20:19:07               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:07               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x78de@191.235.84.50)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0x78de@191.235.84.50)>\n'
b"   DEBUG  05-20 20:19:07           ETHPeerPool  Could not complete handshake with <Node(0x78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d@191.235.84.50:30303)>: TooManyPeersFailure('ETHPeer <Node(0x78de@191.235.84.50)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:07               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:07               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:07           ETHPeerPool  Could not complete handshake with <Node(0x78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d@191.235.84.50:30303)>: TooManyPeersFailure('ETHPeer <Node(0x78de@191.235.84.50)> disconnected from us before handshake',)\n"
b'   DEBUG  05-20 20:19:07     ConnectionTracker  <Node(0x78de@191.235.84.50)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x78de@191.235.84.50)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:07     ConnectionTracker  <Node(0x78de@191.235.84.50)> will not be retried for 1m24s because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:07             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c27f0978>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0x158f@13.75.154.138)>\n'
b'  DEBUG2  05-20 20:19:07             Transport  Waiting for 32 bytes from <Node(0x158f@13.75.154.138)>\n'
b'  DEBUG2  05-20 20:19:07               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:07               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:07           ETHPeerPool  Could not complete handshake with <Node(0x158f8aab45f6d19c6cbf4a089c2670541a8da11978a2f90dbf6a502a4a3bab80d288afdbeb7ec0ef6d92de563767f3b1ea9e8e334ca711e9f8e2df5a0385e8e6@13.75.154.138:30303)>: TooManyPeersFailure('ETHPeer <Node(0x158f@13.75.154.138)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:07  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x158f@13.75.154.138)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:07     ConnectionTracker  <Node(0x158f@13.75.154.138)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:08             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c277d550>\n'
b'  DEBUG2  05-20 20:19:08             Transport  Waiting for 32 bytes from <Node(0x669f@52.74.57.123)>\n'
b'  DEBUG2  05-20 20:19:08             Transport  Waiting for 32 bytes from <Node(0x669f@52.74.57.123)>\n'
b'  DEBUG2  05-20 20:19:08               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:08               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:08           ETHPeerPool  Could not complete handshake with <Node(0x669f45b66acf3b804c26ce13cfdd1f7e3d0ff4ed85060841b9af3af6dbfbacd05181e1c9363161446a307f3ca24e707856a01e4bf1eed5e1aefc14011a5c1c1c@52.74.57.123:30303)>: TooManyPeersFailure('ETHPeer <Node(0x669f@52.74.57.123)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:08  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x669f@52.74.57.123)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:08     ConnectionTracker  <Node(0x669f@52.74.57.123)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:09             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08e158ccc0>\n'
b'  DEBUG2  05-20 20:19:09             Transport  Waiting for 32 bytes from <Node(0xaa36@13.93.211.84)>\n'
b'  DEBUG2  05-20 20:19:09             Transport  Waiting for 32 bytes from <Node(0xaa36@13.93.211.84)>\n'
b'  DEBUG2  05-20 20:19:09               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:09               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:09           ETHPeerPool  Could not complete handshake with <Node(0xaa36fdf33dd030378a0168efe6ed7d5cc587fafa3cdd375854fe735a2e11ea3650ba29644e2db48368c46e1f60e716300ba49396cd63778bf8a818c09bded46f@13.93.211.84:30303)>: TooManyPeersFailure('ETHPeer <Node(0xaa36@13.93.211.84)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:09  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xaa36@13.93.211.84)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:09     ConnectionTracker  <Node(0xaa36@13.93.211.84)> will not be retried for 1m because TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0xddd81193df80128880232fc1deb45f72746019839589eeb642d3d44efbb8b2dda2c1a46a348349964a6066f8afb016eb2a8c0f3c66f32fadf4370a236a4b5286@52.231.202.145:30303)>: UnreachablePeer("Can\'t reach <Node(0xddd81193df80128880232fc1deb45f72746019839589eeb642d3d44efbb8b2dda2c1a46a348349964a6066f8afb016eb2a8c0f3c66f32fadf4370a236a4b5286@52.231.202.145:30303)>",)\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x3f1d12044546b76342d59d4a05532c14b85aa669704bfe1f864fe079415aa2c02d743e03218e57a33fb94523adb54032871a6c51b2cc5514cb7c7e35b3ed0a99@13.93.211.84:30303)>: UnreachablePeer("Can\'t reach <Node(0x3f1d12044546b76342d59d4a05532c14b85aa669704bfe1f864fe079415aa2c02d743e03218e57a33fb94523adb54032871a6c51b2cc5514cb7c7e35b3ed0a99@13.93.211.84:30303)>",)\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x1118980bf48b0a3640bdba04e0fe78b1add18e1cd99bf22d53daac1fd9972ad650df52176e7c7d89d1114cfef2bc23a2959aa54998a46afcf7d91809f0855082@52.74.57.123:30303)>: UnreachablePeer("Can\'t reach <Node(0x1118980bf48b0a3640bdba04e0fe78b1add18e1cd99bf22d53daac1fd9972ad650df52176e7c7d89d1114cfef2bc23a2959aa54998a46afcf7d91809f0855082@52.74.57.123:30303)>",)\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Got candidates from backend <p2p.peer_backend.DiscoveryPeerBackend object at 0x7f08da1928d0> ((<Node(0x6e4648249d3263c94bb51f1346ca6946de8d9b01438cf684dedfd2c2e36c9c811ae9d7f958abb99587f0cabdf35244fb19aa08d32a09052dbd4737d617c54b69@178.63.67.43:21221)>, <Node(0x13861cef60c028ba526ee2df37e9ff4ed824ed57d9941fc67b2e142eca48972454ea17b48e9dc11063571fef0dc48f073387868c32a1cfe77b5b26c3f56a4296@178.63.108.244:21227)>, <Node(0x53a336ba74d43dcb3bf17659148d9d50a5f75971fac685246d275b31562d2b40c6d031a97ed74f38810b8ef889c140a81f773d3255a3a6439f5e91917d22d0c1@84.22.107.57:30303)>, <Node(0x3b321d0c7672e018f77dde818634ef4128747fab6d587f73b9ec218c54fd9a43d09e112bec64eb8cd7a99081ac7105d586aa08bbd877bb3447e086c70558e6d6@70.95.70.138:30303)>, <Node(0x634fa50b9ba627799e021809dae66411b60c149dd1c306b7acad4bea8922ae54a67f5750ce7dacf6f6b450f59bc7645b7477c1b1c618d3ab75c0ed2c5fff89cb@144.76.42.182:21212)>, <Node(0x399c7559da25f765b3590d974a852560b3e1467b5d926aac482debe2aaa39b5b6d35df92b41514fef5d3b6907ec9a2f21811c089f0ef8d14a2fc45a616bc720e@13.250.237.92:30305)>, <Node(0x00819d57295c13cffc2c5626670d55e63293dc102aae453b0b2e3b8472f5d3e79ef1ce100d4e1d1ffd6d0493eb499d385dc032d18b6383800661446240f359cc@95.179.142.123:30666)>, <Node(0x0f37b0fafedbba207ba82928fe800ec5a3764b67f0e5125de1775e699365261b7b24a903a83a0303685895ea3aa58e1a10b4cd1efec1f4f276a48b992bb96928@68.183.224.173:30303)>, <Node(0x78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d@191.235.84.50:30303)>, <Node(0xb130fcb7148fe409f292aac866731809298c6087f5c263874846de266cd2e5623a4580930af5c3493c8ebc32119f4c324c8a84bc9ad7fca4487721be1a2244fc@159.65.36.247:30303)>, <Node(0xe464f78c05e116b5676d2170dd6a1e3b2edf742fc781460c5a5920aeaa6e4013444b7a7a454b7acfeee28f0023670e4c37b0b3100ab657ef444621132f4e27af@149.28.242.238:30303)>, <Node(0x8f83c5bb7d63d8676e1f462c98a966ba551fbc372277ebbd204e5ea8a93254617837ba7f8036a85fa4734f6d569f66b98e359d7c75ae0732d991451aad8b6cc6@51.159.1.144:30303)>, <Node(0xf1c332ea60253c89054be043408a48a080380398d35e5c2c516dc928f50b41cf0dc55fdbf20353595cd14b8aebfdc7b6857de1d839784da59982043acfab710f@45.32.7.238:30303)>, <Node(0x9dd0d5144521c2f72f3633f88812e3183cfc15664473fae8962138236f988a319c732714a09a573717e22d9f37ab6f679871e281c35c4bffeb85a8fc17d3edea@198.199.93.111:30303)>, <Node(0xc17d3082d62c13f6bc4a5c81957409844babce2b26584026d92e5f63f49de6f041f0d40748489b691acd40e1e8e2905826784dde276f2fbcca6b6464b2a5ccb1@149.28.168.123:30666)>, <Node(0x2698ce3e409dbc7d3b07d2ae1e9cc59a4ad5b5159b29fc2bae82992a0aebf1c31809020b4516f21206ed8c2cd616b1de84b88698a7e82b44d80c484257372422@35.182.40.231:30303)>, <Node(0xcd9558d92e756d3021330a382ff737612800a3fdcbf9c665927be657f7527dda5da55b04d7095b376809fa3ac26f2965ba81fb6a8b1d03abade669239daf1895@95.216.210.92:30303)>, <Node(0x89b119523775bbfd10013c7dab8865c59ae3a3341b02d90ede14f2697e32558e7ddeccf21bbf166cbfe7406d428a1e9e2eff18a0bd1aaa28adb4ac8fd93a9841@172.107.178.36:30303)>, <Node(0xed781e7570b08b2f3f3ac5da551356b919023a55a701c8523b6a055edb72aa7b8002707751126d5889f6db556a1e866471ffbe32b4d5de0836fbdef3a0112f6a@35.233.244.198:30303)>, <Node(0xe02c6f8c1cc6f8c0427f45ad548448c9830ad997614ffd831ce600515d0504f56adc42ff468d285ef4e7c54e1fcbb4111a091e582ea2aef362a7265a1cd800c8@3.214.78.73:30303)>, <Node(0x669f45b66acf3b804c26ce13cfdd1f7e3d0ff4ed85060841b9af3af6dbfbacd05181e1c9363161446a307f3ca24e707856a01e4bf1eed5e1aefc14011a5c1c1c@52.74.57.123:30303)>, <Node(0x71363ae34472ff50e407547ca51fd190e702a577b3a62cdd8ad6374568861d7d4f53588c0307117c33d4b9624c776b4dc216530639573e79792fca335bcbc8a0@159.65.24.149:30308)>, <Node(0x32505146701282e7afe681b293dcf52eb1722df5803ec5167fddbd2fad5533f6ec1945a0876ab00f9a3510cebf9d313b95ee9ec453406b648d13b5bbde9eadc8@178.63.67.43:21216)>, <Node(0x3170205709990d5985880e41f4506cba613f7112ea2178f8ef485085c1c32edc3bb50a2530480d19d8e34156f0e2414b1faa7293234f9590714793e34f213e17@136.63.45.224:30303)>, <Node(0x52096a15e3ee48268de435fe2124a559c80bbec0ff177e34d7360d008c6217069db56b68b7458194bb5e3cb613090a3838a788622722f18024f6490c0fb4e8f3@23.111.173.226:30304)>))\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Initiating 10 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Got candidates from backend <p2p.peer_backend.BootnodesPeerBackend object at 0x7f08da192908> ((<Node(0xbcc7240543fe2cf86f5e9093d05753dd83343f8fda7bf0e833f65985c73afccf8f981301e13ef49c4804491eab043647374df1c4adf85766af88a624ecc3330e@136.243.154.244:30303)>,))\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Initiating 1 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x634f@144.76.42.182)>\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x634f@144.76.42.182)>...\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x0f37@68.183.224.173)>\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x0081@95.179.142.123)>\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x0f37@68.183.224.173)>...\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0xb130@159.65.36.247)>\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x78de@191.235.84.50)>\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x0081@95.179.142.123)>...\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  skipping <Node(0x78de@191.235.84.50)>, it failed because "TooManyPeersFailure" and is not usable for 2m21s\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x6e46@178.63.67.43)>\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0xb130@159.65.36.247)>...\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x399c@13.250.237.92)>\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x3b32@70.95.70.138)>\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x1386@178.63.108.244)>\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0x53a3@84.22.107.57)>\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x6e46@178.63.67.43)>...\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x399c@13.250.237.92)>...\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received should connect to request: <Node(0xbcc7@136.243.154.244)>\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x3b32@70.95.70.138)>...\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x1386@178.63.108.244)>...\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0x53a3@84.22.107.57)>...\n'
b'  DEBUG2  05-20 20:19:10           ETHPeerPool  Connecting to <Node(0xbcc7@136.243.154.244)>...\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2797978>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0xb130@159.65.36.247)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0xb130@159.65.36.247)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0xb130fcb7148fe409f292aac866731809298c6087f5c263874846de266cd2e5623a4580930af5c3493c8ebc32119f4c324c8a84bc9ad7fca4487721be1a2244fc@159.65.36.247:30303)>: TooManyPeersFailure('ETHPeer <Node(0xb130@159.65.36.247)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xb130@159.65.36.247)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0xb130@159.65.36.247)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c27b4978>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x3b32@70.95.70.138)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x3b32@70.95.70.138)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x3b321d0c7672e018f77dde818634ef4128747fab6d587f73b9ec218c54fd9a43d09e112bec64eb8cd7a99081ac7105d586aa08bbd877bb3447e086c70558e6d6@70.95.70.138:30303)>: TooManyPeersFailure('ETHPeer <Node(0x3b32@70.95.70.138)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x3b32@70.95.70.138)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0x3b32@70.95.70.138)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c276ae80>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x0081@95.179.142.123)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 160 bytes from <Node(0x0081@95.179.142.123)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2797eb8>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x634f@144.76.42.182)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'egem/v1.1.1-onoskelis-0a846937/linux-amd64/go1.12', 'capabilities': (('eth', 62), ('eth', 63)), 'listen_port': 0, 'remote_pubkey': b'\\x00\\x81\\x9dW)\\\\\\x13\\xcf\\xfc,V&g\\rU\\xe62\\x93\\xdc\\x10*\\xaeE;\\x0b.;\\x84r\\xf5\\xd3\\xe7\\x9e\\xf1\\xce\\x10\\rN\\x1d\\x1f\\xfdm\\x04\\x93\\xebI\\x9d8]\\xc02\\xd1\\x8bc\\x83\\x80\\x06aDb@\\xf3Y\\xcc'}\n"
b'   DEBUG  05-20 20:19:10               ETHPeer  Finished P2P handshake with <Node(0x0081@95.179.142.123)>, using sub-protocol (eth, 63)\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 160 bytes from <Node(0x634f@144.76.42.182)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 0\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {\'version\': 5, \'client_version_string\': \'Geth/v2.0.8-stable-369ce824/linux-amd64/go1.10.3\', \'capabilities\': ((\'etz\', 62), (\'etz\', 63), (\'etz\', 64)), \'listen_port\': 0, \'remote_pubkey\': b\'cO\\xa5\\x0b\\x9b\\xa6\\\'y\\x9e\\x02\\x18\\t\\xda\\xe6d\\x11\\xb6\\x0c\\x14\\x9d\\xd1\\xc3\\x06\\xb7\\xac\\xadK\\xea\\x89"\\xaeT\\xa6\\x7fWP\\xce}\\xac\\xf6\\xf6\\xb4P\\xf5\\x9b\\xc7d[tw\\xc1\\xb1\\xc6\\x18\\xd3\\xabu\\xc0\\xed,_\\xff\\x89\\xcb\'}\n'
b'   DEBUG  05-20 20:19:10               ETHPeer  Disconnecting from remote peer <Node(0x634f@144.76.42.182)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c2797eb8>\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x634fa50b9ba627799e021809dae66411b60c149dd1c306b7acad4bea8922ae54a67f5750ce7dacf6f6b450f59bc7645b7477c1b1c618d3ab75c0ed2c5fff89cb@144.76.42.182:21212)>: HandshakeFailure("No matching capabilities between us (((\'eth\', 63),)) and <Node(0x634f@144.76.42.182)> (((\'etz\', 62), (\'etz\', 63), (\'etz\', 64))), disconnecting",)\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x634f@144.76.42.182)> | timeout: 10s | reason: HandshakeFailure\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0x634f@144.76.42.182)> will not be retried for 10s because HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2769358>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x1386@178.63.108.244)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 160 bytes from <Node(0x1386@178.63.108.244)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08e0e47a58>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x6e46@178.63.67.43)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Geth/v2.0.8-stable-369ce824/linux-amd64/go1.10.3', 'capabilities': (('etz', 62), ('etz', 63), ('etz', 64)), 'listen_port': 0, 'remote_pubkey': b'\\x13\\x86\\x1c\\xef`\\xc0(\\xbaRn\\xe2\\xdf7\\xe9\\xffN\\xd8$\\xedW\\xd9\\x94\\x1f\\xc6{.\\x14.\\xcaH\\x97$T\\xea\\x17\\xb4\\x8e\\x9d\\xc1\\x10cW\\x1f\\xef\\r\\xc4\\x8f\\x073\\x87\\x86\\x8c2\\xa1\\xcf\\xe7{[&\\xc3\\xf5jB\\x96'}\n"
b'   DEBUG  05-20 20:19:10               ETHPeer  Disconnecting from remote peer <Node(0x1386@178.63.108.244)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c2769358>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x6e46@178.63.67.43)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c27b4f60>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x53a3@84.22.107.57)>\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x13861cef60c028ba526ee2df37e9ff4ed824ed57d9941fc67b2e142eca48972454ea17b48e9dc11063571fef0dc48f073387868c32a1cfe77b5b26c3f56a4296@178.63.108.244:21227)>: HandshakeFailure("No matching capabilities between us (((\'eth\', 63),)) and <Node(0x1386@178.63.108.244)> (((\'etz\', 62), (\'etz\', 63), (\'etz\', 64))), disconnecting",)\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x1386@178.63.108.244)> | timeout: 10s | reason: HandshakeFailure\n'
b"  DEBUG2  05-20 20:19:10           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c276ae80>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x0081@95.179.142.123)>\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0x1386@178.63.108.244)> will not be retried for 10s because HandshakeFailure\n'
b"   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x6e4648249d3263c94bb51f1346ca6946de8d9b01438cf684dedfd2c2e36c9c811ae9d7f958abb99587f0cabdf35244fb19aa08d32a09052dbd4737d617c54b69@178.63.67.43:21221)>: TooManyPeersFailure('ETHPeer <Node(0x6e46@178.63.67.43)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x6e46@178.63.67.43)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0x6e46@178.63.67.43)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 112 bytes from <Node(0x0081@95.179.142.123)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 16\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {\'protocol_version\': 63, \'network_id\': 1987, \'td\': 2128092691841204767, \'best_hash\': b\'\\x9dXH\\xf9|\\xbaZ\\x01\\xee\\xdd\\xf1\\x08l\\x02\\xb8\\xd0[o\\x8bx\\tS\\r\\x91:/"\\xfb\\x02u^\\xc4\', \'genesis_hash\': b\'\\xdf\\xc3\\xe9NT\\x00{\\xba\\xba\\xed\\x93.h\\x9e\\xf4\\x1d/\\x10\\x9f\\xe2\\x84\\x86\\xb9\\n\\x98\\x12!\\xe4\\xfd\\x9aAI\'}\n'
b'   DEBUG  05-20 20:19:10               ETHPeer  Disconnecting from remote peer <Node(0x0081@95.179.142.123)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c276ae80>\n'
b"   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x00819d57295c13cffc2c5626670d55e63293dc102aae453b0b2e3b8472f5d3e79ef1ce100d4e1d1ffd6d0493eb499d385dc032d18b6383800661446240f359cc@95.179.142.123:30666)>: WrongNetworkFailure('ETHPeer <Node(0x0081@95.179.142.123)> network (1987) does not match ours (1), disconnecting',)\n"
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x0081@95.179.142.123)> | timeout: 10s | reason: WrongNetworkFailure\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0x0081@95.179.142.123)> will not be retried for 10s because WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 208 bytes from <Node(0x53a3@84.22.107.57)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 0\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {\'version\': 5, \'client_version_string\': \'Parity-Ethereum/v2.2.11-stable-8e31051-20190220/x86_64-linux-gnu/rustc1.32.0\', \'capabilities\': ((\'par\', 1), (\'par\', 2), (\'par\', 3), (\'pip\', 1), (\'eth\', 62), (\'eth\', 63)), \'listen_port\': 30303, \'remote_pubkey\': b\'S\\xa36\\xbat\\xd4=\\xcb;\\xf1vY\\x14\\x8d\\x9dP\\xa5\\xf7Yq\\xfa\\xc6\\x85$m\\\'[1V-+@\\xc6\\xd01\\xa9~\\xd7O8\\x81\\x0b\\x8e\\xf8\\x89\\xc1@\\xa8\\x1fw=2U\\xa3\\xa6C\\x9f^\\x91\\x91}"\\xd0\\xc1\'}\n'
b'   DEBUG  05-20 20:19:10               ETHPeer  Finished P2P handshake with <Node(0x53a3@84.22.107.57)>, using sub-protocol (eth, 63)\n'
b"  DEBUG2  05-20 20:19:10           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c27b4f60>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x53a3@84.22.107.57)>\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x53a336ba74d43dcb3bf17659148d9d50a5f75971fac685246d275b31562d2b40c6d031a97ed74f38810b8ef889c140a81f773d3255a3a6439f5e91917d22d0c1@84.22.107.57:30303)>: PeerConnectionLost("IncompleteReadError(\'0 bytes read on a total of 32 expected bytes\',)",)\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2769978>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x399c@13.250.237.92)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 144 bytes from <Node(0x399c@13.250.237.92)>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c276add8>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x0f37@68.183.224.173)>\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Gexp/v1.8.23-stable/linux-amd64/go1.9.4', 'capabilities': (('exp', 63),), 'listen_port': 0, 'remote_pubkey': b'9\\x9cuY\\xda%\\xf7e\\xb3Y\\r\\x97J\\x85%`\\xb3\\xe1F{]\\x92j\\xacH-\\xeb\\xe2\\xaa\\xa3\\x9b[m5\\xdf\\x92\\xb4\\x15\\x14\\xfe\\xf5\\xd3\\xb6\\x90~\\xc9\\xa2\\xf2\\x18\\x11\\xc0\\x89\\xf0\\xef\\x8d\\x14\\xa2\\xfcE\\xa6\\x16\\xbcr\\x0e'}\n"
b'   DEBUG  05-20 20:19:10               ETHPeer  Disconnecting from remote peer <Node(0x399c@13.250.237.92)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:10  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x399c@13.250.237.92)> | timeout: 10s | reason: HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c2769978>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 160 bytes from <Node(0x0f37@68.183.224.173)>\n'
b'   DEBUG  05-20 20:19:10           ETHPeerPool  Could not complete handshake with <Node(0x399c7559da25f765b3590d974a852560b3e1467b5d926aac482debe2aaa39b5b6d35df92b41514fef5d3b6907ec9a2f21811c089f0ef8d14a2fc45a616bc720e@13.250.237.92:30305)>: HandshakeFailure("No matching capabilities between us (((\'eth\', 63),)) and <Node(0x399c@13.250.237.92)> (((\'exp\', 63),)), disconnecting",)\n'
b'  DEBUG2  05-20 20:19:10               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:10               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Geth/v1.8.3-unstable-ace44c85/linux-amd64/go1.10.4', 'capabilities': (('eth', 63), ('eth', 62)), 'listen_port': 0, 'remote_pubkey': b'\\x0f7\\xb0\\xfa\\xfe\\xdb\\xba {\\xa8)(\\xfe\\x80\\x0e\\xc5\\xa3vKg\\xf0\\xe5\\x12]\\xe1w^i\\x93e&\\x1b{$\\xa9\\x03\\xa8:\\x03\\x03hX\\x95\\xea:\\xa5\\x8e\\x1a\\x10\\xb4\\xcd\\x1e\\xfe\\xc1\\xf4\\xf2v\\xa4\\x8b\\x99+\\xb9i('}\n"
b'   DEBUG  05-20 20:19:10               ETHPeer  Finished P2P handshake with <Node(0x0f37@68.183.224.173)>, using sub-protocol (eth, 63)\n'
b'   DEBUG  05-20 20:19:10     ConnectionTracker  <Node(0x399c@13.250.237.92)> will not be retried for 10s because HandshakeFailure\n'
b"  DEBUG2  05-20 20:19:10           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:10             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c276add8>\n'
b'  DEBUG2  05-20 20:19:10             Transport  Waiting for 32 bytes from <Node(0x0f37@68.183.224.173)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 112 bytes from <Node(0x0f37@68.183.224.173)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 16\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {'protocol_version': 63, 'network_id': 856380, 'td': 1128661397144, 'best_hash': b'4Y(\\xb0z\\xaa\\xd6\\xf4\\x98\\xb2\\x17\\x00\\xd7\\xdd\\x0b\\x07\\x80\\xf2\\x87J\\x86\\x81\\xf4\\x93\\xf7\\x83\\x9cZ\\xd45\\xdd\\xf6', 'genesis_hash': b'fKZ\\xdf\\x94M\\xcfA\\x7f\\xd1\\xe6\\x12\\x98\\xbee\\x1b\\x9cskI\\xb5u6\\xd0B\\x1e\\xb9\\x86eF\\xf6\\xb4'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0x0f37@68.183.224.173)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x0f37@68.183.224.173)> | timeout: 10s | reason: WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c276add8>\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0x0f37b0fafedbba207ba82928fe800ec5a3764b67f0e5125de1775e699365261b7b24a903a83a0303685895ea3aa58e1a10b4cd1efec1f4f276a48b992bb96928@68.183.224.173:30303)>: WrongNetworkFailure('ETHPeer <Node(0x0f37@68.183.224.173)> network (856380) does not match ours (1), disconnecting',)\n"
b'   DEBUG  05-20 20:19:11           ETHPeerPool  Initiating 10 peer connection attempts with 25 open peer slots\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0x0f37@68.183.224.173)> will not be retried for 10s because WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0xed78@35.233.244.198)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0xed78@35.233.244.198)>...\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0xe464@149.28.242.238)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0xe02c@3.214.78.73)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0xe464@149.28.242.238)>...\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x8f83@51.159.1.144)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x89b1@172.107.178.36)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0xe02c@3.214.78.73)>...\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0xf1c3@45.32.7.238)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0xc17d@149.28.168.123)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x8f83@51.159.1.144)>...\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0xcd95@95.216.210.92)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x89b1@172.107.178.36)>...\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x2698@35.182.40.231)>...\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0xf1c3@45.32.7.238)>...\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0xc17d@149.28.168.123)>...\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0xcd95@95.216.210.92)>...\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08da38b3c8>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xe02c@3.214.78.73)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xe02c@3.214.78.73)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2725f98>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xf1c3@45.32.7.238)>\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0xe02c6f8c1cc6f8c0427f45ad548448c9830ad997614ffd831ce600515d0504f56adc42ff468d285ef4e7c54e1fcbb4111a091e582ea2aef362a7265a1cd800c8@3.214.78.73:30303)>: TooManyPeersFailure('ETHPeer <Node(0xe02c@3.214.78.73)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 144 bytes from <Node(0xf1c3@45.32.7.238)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xe02c@3.214.78.73)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08da38be10>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 4, 'client_version_string': 'Geth/v1.6.6-stable-10a45cb5/linux-amd64/go1.8.3', 'capabilities': (('les', 1),), 'listen_port': 0, 'remote_pubkey': b'\\xf1\\xc32\\xea`%<\\x89\\x05K\\xe0C@\\x8aH\\xa0\\x808\\x03\\x98\\xd3^\\\\,Qm\\xc9(\\xf5\\x0bA\\xcf\\r\\xc5_\\xdb\\xf2\\x03SY\\\\\\xd1K\\x8a\\xeb\\xfd\\xc7\\xb6\\x85}\\xe1\\xd89xM\\xa5\\x99\\x82\\x04:\\xcf\\xabq\\x0f'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0xf1c3@45.32.7.238)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c2725f98>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 144 bytes from <Node(0x2698@35.182.40.231)>\n'
b'   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0xf1c332ea60253c89054be043408a48a080380398d35e5c2c516dc928f50b41cf0dc55fdbf20353595cd14b8aebfdc7b6857de1d839784da59982043acfab710f@45.32.7.238:30303)>: HandshakeFailure("No matching capabilities between us (((\'eth\', 63),)) and <Node(0xf1c3@45.32.7.238)> (((\'les\', 1),)), disconnecting",)\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0xe02c@3.214.78.73)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x9dd0@198.199.93.111)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xf1c3@45.32.7.238)> | timeout: 10s | reason: HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {\'version\': 5, \'client_version_string\': \'Geth/v1.8.23-stable-c9427004/linux-amd64/go1.11.5\', \'capabilities\': ((\'eth\', 63),), \'listen_port\': 0, \'remote_pubkey\': b\'&\\x98\\xce>@\\x9d\\xbc};\\x07\\xd2\\xae\\x1e\\x9c\\xc5\\x9aJ\\xd5\\xb5\\x15\\x9b)\\xfc+\\xae\\x82\\x99*\\n\\xeb\\xf1\\xc3\\x18\\t\\x02\\x0bE\\x16\\xf2\\x12\\x06\\xed\\x8c,\\xd6\\x16\\xb1\\xde\\x84\\xb8\\x86\\x98\\xa7\\xe8+D\\xd8\\x0cHBW7$"\'}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Finished P2P handshake with <Node(0x2698@35.182.40.231)>, using sub-protocol (eth, 63)\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x9dd0@198.199.93.111)>...\n'
b"  DEBUG2  05-20 20:19:11           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08da38be10>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x2698@35.182.40.231)>\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0xf1c3@45.32.7.238)> will not be retried for 10s because HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2725be0>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x89b1@172.107.178.36)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 176 bytes from <Node(0x89b1@172.107.178.36)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 80 bytes from <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Pirl/v1.8.27-v6-masternode-premium-gecko-4aa88705/linux-amd64/go1.12', 'capabilities': (('eth', 62), ('eth', 63)), 'listen_port': 0, 'remote_pubkey': b'\\x89\\xb1\\x19R7u\\xbb\\xfd\\x10\\x01<}\\xab\\x88e\\xc5\\x9a\\xe3\\xa34\\x1b\\x02\\xd9\\x0e\\xde\\x14\\xf2i~2U\\x8e}\\xde\\xcc\\xf2\\x1b\\xbf\\x16l\\xbf\\xe7@mB\\x8a\\x1e\\x9e.\\xff\\x18\\xa0\\xbd\\x1a\\xaa(\\xad\\xb4\\xac\\x8f\\xd9:\\x98A'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  Finished P2P handshake with <Node(0x89b1@172.107.178.36)>, using sub-protocol (eth, 63)\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 16\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  Finished (eth, 63) handshake with <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2710940>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xe464@149.28.242.238)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Running task <coroutine object BaseService.run at 0x7f08c2754360>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xe464@149.28.242.238)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Running task <coroutine object BaseService.run at 0x7f08da3196d0>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Running task <coroutine object BaseService.run at 0x7f08da3a2620>\n'
b"   DEBUG  05-20 20:19:11  ResponseCandidateStream  Launching <ResponseCandidateStream(ETHPeer <Node(0x2698@35.182.40.231)>, <class 'trinity.protocol.eth.commands.BlockHeaders'>)>\n"
b'    INFO  05-20 20:19:11           ETHPeerPool  Adding ETHPeer <Node(0x2698@35.182.40.231)> to pool\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xe464@149.28.242.238)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 19 to <p2p.transport.Transport object at 0x7f08da38be10>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 19\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded GetBlockHeaders (cmd_id=19) msg: {'block_number_or_hash': 1920000, 'max_headers': 1, 'skip': 0, 'reverse': False}\n"
b"  DEBUG2  05-20 20:19:11  ResponseCandidateStream  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x2698@35.182.40.231)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.BlockHeaders'>})\n"
b"  DEBUG2  05-20 20:19:11    ETHChainTipMonitor  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x2698@35.182.40.231)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:11      HeaderMeatSyncer  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x2698@35.182.40.231)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:11   FastChainBodySyncer  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x2698@35.182.40.231)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:11      ETHRequestServer  Adding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x2698@35.182.40.231)> to queue; queue_size=0\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x2698@35.182.40.231)>\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0xe464f78c05e116b5676d2170dd6a1e3b2edf742fc781460c5a5920aeaa6e4013444b7a7a454b7acfeee28f0023670e4c37b0b3100ab657ef444621132f4e27af@149.28.242.238:30303)>: TooManyPeersFailure('ETHPeer <Node(0xe464@149.28.242.238)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:11      ETHRequestServer  Running task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08da44c2b0>\n'
b"   DEBUG  05-20 20:19:11  ETHPeerRequestHandler  ETHPeer <Node(0x2698@35.182.40.231)> requested headers: {'block_number_or_hash': 1920000, 'max_headers': 1, 'skip': 0, 'reverse': False}\n"
b"  DEBUG2  05-20 20:19:11           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c2725be0>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x89b1@172.107.178.36)>\n'
b'    INFO  05-20 20:19:11  ETHHeaderChainSyncer  Head TD (17179869184) announced by ETHPeer <Node(0x2698@35.182.40.231)> not higher than ours (17179869184), not syncing\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0xe464@149.28.242.238)> will not be retried for 1m because TooManyPeersFailure\n'
b'    INFO  05-20 20:19:11  ETHHeaderChainSyncer  At or behind peer ETHPeer <Node(0x2698@35.182.40.231)>, skipping skeleton sync\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 112 bytes from <Node(0x89b1@172.107.178.36)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08da311160>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x89b1@172.107.178.36)> | timeout: 10s | reason: WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xed78@35.233.244.198)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 16\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {\'protocol_version\': 63, \'network_id\': 3125659152, \'td\': 21229740168747573104, \'best_hash\': b\'z\\x026\\x9a\\xafG\\x17,\\x80\\xdf\\xd0\\xe8\\xbf"\\xc2\\xd2f\\xbe\\x15\\xbf\\x9a\\x0e\\xe9\\x86C#\\\'\\xce\\xc3\\xe64t\', \'genesis_hash\': b\')\\xa7B\\xbat\\xd8\\x9f\\xc2M.H\\xae\\xb1\\x03\\x0f\\xcbrv\\xf4\\xb2B\\x14\\x88\\xc0_,\\xc0\\xf3\\x9a\\xa1\\xa2s\'}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0x89b1@172.107.178.36)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c2725be0>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 144 bytes from <Node(0xed78@35.233.244.198)>\n'
b'   DEBUG  05-20 20:19:11  ETHPeerRequestHandler  Peer requested header number 1920000 that is unavailable, stopping search.\n'
b'  DEBUG2  05-20 20:19:11  ETHPeerRequestHandler  Replying to ETHPeer <Node(0x2698@35.182.40.231)> with 0 headers\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 20 to <p2p.transport.Transport object at 0x7f08da38be10>\n'
b'  DEBUG2  05-20 20:19:11      ETHRequestServer  Task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08da44c2b0> finished with no errors\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0x89b119523775bbfd10013c7dab8865c59ae3a3341b02d90ede14f2697e32558e7ddeccf21bbf166cbfe7406d428a1e9e2eff18a0bd1aaa28adb4ac8fd93a9841@172.107.178.36:30303)>: WrongNetworkFailure('ETHPeer <Node(0x89b1@172.107.178.36)> network (3125659152) does not match ours (1), disconnecting',)\n"
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'gdex/v1.8.25-stable-e069e2a2/linux-amd64/go1.12.3', 'capabilities': (('dex', 64),), 'listen_port': 0, 'remote_pubkey': b'\\xedx\\x1eup\\xb0\\x8b/?:\\xc5\\xdaU\\x13V\\xb9\\x19\\x02:U\\xa7\\x01\\xc8R;j\\x05^\\xdbr\\xaa{\\x80\\x02pwQ\\x12mX\\x89\\xf6\\xdbUj\\x1e\\x86dq\\xff\\xbe2\\xb4\\xd5\\xde\\x086\\xfb\\xde\\xf3\\xa0\\x11/j'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0xed78@35.233.244.198)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08da311160>\n'
b'   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0xed781e7570b08b2f3f3ac5da551356b919023a55a701c8523b6a055edb72aa7b8002707751126d5889f6db556a1e866471ffbe32b4d5de0836fbdef3a0112f6a@35.233.244.198:30303)>: HandshakeFailure("No matching capabilities between us (((\'eth\', 63),)) and <Node(0xed78@35.233.244.198)> (((\'dex\', 64),)), disconnecting",)\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0x89b1@172.107.178.36)> will not be retried for 10s because WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xed78@35.233.244.198)> | timeout: 10s | reason: HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 16, 'reason_name': 'subprotocol_error'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  ETHPeer <Node(0x2698ce3e409dbc7d3b07d2ae1e9cc59a4ad5b5159b29fc2bae82992a0aebf1c31809020b4516f21206ed8c2cd616b1de84b88698a7e82b44d80c484257372422@35.182.40.231:30303)> disconnected: subprotocol_error\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  ETHPeer <Node(0x2698@35.182.40.231)> had nothing left to do, ceasing operation...\n'
b"   DEBUG  05-20 20:19:11               ETHPeer  Waiting for child services: [<ResponseCandidateStream(ETHPeer <Node(0x2698@35.182.40.231)>, <class 'trinity.protocol.eth.commands.BlockHeaders'>)>, <trinity.protocol.common.boot.DAOCheckBootManager object at 0x7f08c27b4c50>]\n"
b"   DEBUG  05-20 20:19:11  ResponseCandidateStream  <ResponseCandidateStream(ETHPeer <Node(0x2698@35.182.40.231)>, <class 'trinity.protocol.eth.commands.BlockHeaders'>)> finished: Cancellation requested by ETHPeer:ETHPeerPool:FullServer:FullNode token\n"
b"   DEBUG  05-20 20:19:11  ResponseCandidateStream  Stream <ResponseCandidateStream(ETHPeer <Node(0x2698@35.182.40.231)>, <class 'trinity.protocol.eth.commands.BlockHeaders'>)> shutting down, cancelling the pending request\n"
b"   DEBUG  05-20 20:19:11  ResponseCandidateStream  <ResponseCandidateStream(ETHPeer <Node(0x2698@35.182.40.231)>, <class 'trinity.protocol.eth.commands.BlockHeaders'>)> halted cleanly\n"
b'  DEBUG2  05-20 20:19:11               ETHPeer  Task <coroutine object BaseService.run at 0x7f08da3a2620> finished with no errors\n'
b'   DEBUG  05-20 20:19:11   DAOCheckBootManager  <trinity.protocol.common.boot.DAOCheckBootManager object at 0x7f08c27b4c50> finished: Cancellation requested by ResponseCandidateStream:ETHPeer:ETHPeerPool:FullServer:FullNode token\n'
b'   DEBUG  05-20 20:19:11   DAOCheckBootManager  <trinity.protocol.common.boot.DAOCheckBootManager object at 0x7f08c27b4c50> halted cleanly\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Task <coroutine object BaseService.run at 0x7f08da3196d0> finished with no errors\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  All child services finished\n'
b'    INFO  05-20 20:19:11           ETHPeerPool  ETHPeer <Node(0x2698@35.182.40.231)> finished[DisconnectReason.subprotocol_error], removing from pool\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  ETHPeer <Node(0x2698@35.182.40.231)> halted cleanly\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Task <coroutine object BaseService.run at 0x7f08c2754360> finished with no errors\n'
b'   DEBUG  05-20 20:19:11           ETHPeerPool  ETHPeer <Node(0x2698@35.182.40.231)> disconnected during boot-up, dropped from pool\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0xed78@35.233.244.198)> will not be retried for 10s because HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x2698@35.182.40.231)> | timeout: 1m | reason: Quick disconnect\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c27690b8>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x8f83@51.159.1.144)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x8f83@51.159.1.144)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0x8f83c5bb7d63d8676e1f462c98a966ba551fbc372277ebbd204e5ea8a93254617837ba7f8036a85fa4734f6d569f66b98e359d7c75ae0732d991451aad8b6cc6@51.159.1.144:30303)>: TooManyPeersFailure('ETHPeer <Node(0x8f83@51.159.1.144)> disconnected from us before handshake',)\n"
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0x2698@35.182.40.231)> will not be retried for 1m because Quick disconnect\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x8f83@51.159.1.144)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0x8f83@51.159.1.144)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c277df28>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xcd95@95.216.210.92)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 176 bytes from <Node(0xcd95@95.216.210.92)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Pirl/v1.8.27-v6-masternode-content-gecko-4aa88705/linux-amd64/go1.12', 'capabilities': (('eth', 62), ('eth', 63)), 'listen_port': 0, 'remote_pubkey': b'\\xcd\\x95X\\xd9.um0!3\\n8/\\xf77a(\\x00\\xa3\\xfd\\xcb\\xf9\\xc6e\\x92{\\xe6W\\xf7R}\\xda]\\xa5[\\x04\\xd7\\t[7h\\t\\xfa:\\xc2o)e\\xba\\x81\\xfbj\\x8b\\x1d\\x03\\xab\\xad\\xe6i#\\x9d\\xaf\\x18\\x95'}\n"
b'   DEBUG  05-20 20:19:11               ETHPeer  Finished P2P handshake with <Node(0xcd95@95.216.210.92)>, using sub-protocol (eth, 63)\n'
b"  DEBUG2  05-20 20:19:11           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c277df28>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xcd95@95.216.210.92)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c2717b38>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x9dd0@198.199.93.111)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 176 bytes from <Node(0x9dd0@198.199.93.111)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {\'version\': 5, \'client_version_string\': \'Geth/Airtime V0 - Master Node/v1.8.3-unstable-746392cf/linux-amd64/go1.9.2\', \'capabilities\': ((\'eth\', 63), (\'eth\', 62)), \'listen_port\': 0, \'remote_pubkey\': b"\\x9d\\xd0\\xd5\\x14E!\\xc2\\xf7/63\\xf8\\x88\\x12\\xe3\\x18<\\xfc\\x15fDs\\xfa\\xe8\\x96!8#o\\x98\\x8a1\\x9cs\'\\x14\\xa0\\x9aW7\\x17\\xe2-\\x9f7\\xabog\\x98q\\xe2\\x81\\xc3\\\\K\\xff\\xeb\\x85\\xa8\\xfc\\x17\\xd3\\xed\\xea"}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Finished P2P handshake with <Node(0x9dd0@198.199.93.111)>, using sub-protocol (eth, 63)\n'
b"  DEBUG2  05-20 20:19:11           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c2717b38>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0x9dd0@198.199.93.111)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 112 bytes from <Node(0x9dd0@198.199.93.111)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 16\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {\'protocol_version\': 63, \'network_id\': 19931993, \'td\': 5078809, \'best_hash\': b\'.\\x00\\xfa\\xad\\x8ay\\xbc\\xc7E4\\x1aa\\x0f\\xeb\\x9f\\xfd\\xbc\\x89\\xdc\\xfbD\\x19j \\x1d\\x86\\xd1y\\x1b\\xd2\\xf0\\xc9\', \'genesis_hash\': b\'-\\x14\\t\\x99\\x17y\\xba-\\xd4"\\x7f><\\x90S@\\x17\\x1a\\xb3\\x10|\\x9fW\\x03\\xfbN\\xa9(M\\xf0i\\xc7\'}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0x9dd0@198.199.93.111)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c2717b38>\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0x9dd0d5144521c2f72f3633f88812e3183cfc15664473fae8962138236f988a319c732714a09a573717e22d9f37ab6f679871e281c35c4bffeb85a8fc17d3edea@198.199.93.111:30303)>: WrongNetworkFailure('ETHPeer <Node(0x9dd0@198.199.93.111)> network (19931993) does not match ours (1), disconnecting',)\n"
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x9dd0@198.199.93.111)> | timeout: 10s | reason: WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 112 bytes from <Node(0xcd95@95.216.210.92)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 16\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {\'protocol_version\': 63, \'network_id\': 3125659152, \'td\': 21229740168747573104, \'best_hash\': b\'z\\x026\\x9a\\xafG\\x17,\\x80\\xdf\\xd0\\xe8\\xbf"\\xc2\\xd2f\\xbe\\x15\\xbf\\x9a\\x0e\\xe9\\x86C#\\\'\\xce\\xc3\\xe64t\', \'genesis_hash\': b\')\\xa7B\\xbat\\xd8\\x9f\\xc2M.H\\xae\\xb1\\x03\\x0f\\xcbrv\\xf4\\xb2B\\x14\\x88\\xc0_,\\xc0\\xf3\\x9a\\xa1\\xa2s\'}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0xcd95@95.216.210.92)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c277df28>\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0xcd9558d92e756d3021330a382ff737612800a3fdcbf9c665927be657f7527dda5da55b04d7095b376809fa3ac26f2965ba81fb6a8b1d03abade669239daf1895@95.216.210.92:30303)>: WrongNetworkFailure('ETHPeer <Node(0xcd95@95.216.210.92)> network (3125659152) does not match ours (1), disconnecting',)\n"
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0x9dd0@198.199.93.111)> will not be retried for 10s because WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xcd95@95.216.210.92)> | timeout: 10s | reason: WrongNetworkFailure\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0xcd95@95.216.210.92)> will not be retried for 10s because WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08da37efd0>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xc17d@149.28.168.123)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 160 bytes from <Node(0xc17d@149.28.168.123)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 0\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {\'version\': 5, \'client_version_string\': \'egem/v1.1.1-onoskelis-0a846937/linux-amd64/go1.12\', \'capabilities\': ((\'eth\', 62), (\'eth\', 63)), \'listen_port\': 0, \'remote_pubkey\': b"\\xc1}0\\x82\\xd6,\\x13\\xf6\\xbcJ\\\\\\x81\\x95t\\t\\x84K\\xab\\xce+&X@&\\xd9._c\\xf4\\x9d\\xe6\\xf0A\\xf0\\xd4\\x07HH\\x9bi\\x1a\\xcd@\\xe1\\xe8\\xe2\\x90X&xM\\xde\'o/\\xbc\\xcakdd\\xb2\\xa5\\xcc\\xb1"}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Finished P2P handshake with <Node(0xc17d@149.28.168.123)>, using sub-protocol (eth, 63)\n'
b"  DEBUG2  05-20 20:19:11           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08da37efd0>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 32 bytes from <Node(0xc17d@149.28.168.123)>\n'
b'  DEBUG2  05-20 20:19:11             Transport  Waiting for 112 bytes from <Node(0xc17d@149.28.168.123)>\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Got msg with cmd_id: 16\n'
b'  DEBUG2  05-20 20:19:11               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {\'protocol_version\': 63, \'network_id\': 1987, \'td\': 2128092691841204767, \'best_hash\': b\'\\x9dXH\\xf9|\\xbaZ\\x01\\xee\\xdd\\xf1\\x08l\\x02\\xb8\\xd0[o\\x8bx\\tS\\r\\x91:/"\\xfb\\x02u^\\xc4\', \'genesis_hash\': b\'\\xdf\\xc3\\xe9NT\\x00{\\xba\\xba\\xed\\x93.h\\x9e\\xf4\\x1d/\\x10\\x9f\\xe2\\x84\\x86\\xb9\\n\\x98\\x12!\\xe4\\xfd\\x9aAI\'}\n'
b'   DEBUG  05-20 20:19:11               ETHPeer  Disconnecting from remote peer <Node(0xc17d@149.28.168.123)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:11             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08da37efd0>\n'
b"   DEBUG  05-20 20:19:11           ETHPeerPool  Could not complete handshake with <Node(0xc17d3082d62c13f6bc4a5c81957409844babce2b26584026d92e5f63f49de6f041f0d40748489b691acd40e1e8e2905826784dde276f2fbcca6b6464b2a5ccb1@149.28.168.123:30666)>: WrongNetworkFailure('ETHPeer <Node(0xc17d@149.28.168.123)> network (1987) does not match ours (1), disconnecting',)\n"
b'   DEBUG  05-20 20:19:11           ETHPeerPool  Initiating 5 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0xc17d@149.28.168.123)> | timeout: 10s | reason: WrongNetworkFailure\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  <Node(0xc17d@149.28.168.123)> will not be retried for 10s because WrongNetworkFailure\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x5209@23.111.173.226)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x5209@23.111.173.226)>...\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x3170@136.63.45.224)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x3250@178.63.67.43)>\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x669f@52.74.57.123)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x3170@136.63.45.224)>...\n'
b'   DEBUG  05-20 20:19:11     ConnectionTracker  skipping <Node(0x669f@52.74.57.123)>, it failed because "TooManyPeersFailure" and is not usable for 56s\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x3250@178.63.67.43)>...\n'
b'  DEBUG2  05-20 20:19:11  ConnectionTrackerServer  Received should connect to request: <Node(0x7136@159.65.24.149)>\n'
b'  DEBUG2  05-20 20:19:11           ETHPeerPool  Connecting to <Node(0x7136@159.65.24.149)>...\n'
b'  DEBUG2  05-20 20:19:12             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c06f6320>\n'
b'  DEBUG2  05-20 20:19:12             Transport  Waiting for 32 bytes from <Node(0x3170@136.63.45.224)>\n'
b'  DEBUG2  05-20 20:19:12             Transport  Waiting for 32 bytes from <Node(0x3170@136.63.45.224)>\n'
b'  DEBUG2  05-20 20:19:12               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:12               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:12           ETHPeerPool  Could not complete handshake with <Node(0x3170205709990d5985880e41f4506cba613f7112ea2178f8ef485085c1c32edc3bb50a2530480d19d8e34156f0e2414b1faa7293234f9590714793e34f213e17@136.63.45.224:30303)>: TooManyPeersFailure('ETHPeer <Node(0x3170@136.63.45.224)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:12  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x3170@136.63.45.224)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:12     ConnectionTracker  <Node(0x3170@136.63.45.224)> will not be retried for 1m because TooManyPeersFailure\n'
b'  DEBUG2  05-20 20:19:12             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08da327a20>\n'
b'  DEBUG2  05-20 20:19:12             Transport  Waiting for 32 bytes from <Node(0x5209@23.111.173.226)>\n'
b'  DEBUG2  05-20 20:19:12             Transport  Waiting for 32 bytes from <Node(0x5209@23.111.173.226)>\n'
b'  DEBUG2  05-20 20:19:12               ETHPeer  Got msg with cmd_id: 1\n'
b"  DEBUG2  05-20 20:19:12               ETHPeer  Successfully decoded Disconnect (cmd_id=1) msg: {'reason': 4, 'reason_name': 'too_many_peers'}\n"
b"   DEBUG  05-20 20:19:12           ETHPeerPool  Could not complete handshake with <Node(0x52096a15e3ee48268de435fe2124a559c80bbec0ff177e34d7360d008c6217069db56b68b7458194bb5e3cb613090a3838a788622722f18024f6490c0fb4e8f3@23.111.173.226:30304)>: TooManyPeersFailure('ETHPeer <Node(0x5209@23.111.173.226)> disconnected from us before handshake',)\n"
b'  DEBUG2  05-20 20:19:12  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x5209@23.111.173.226)> | timeout: 1m | reason: TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:12     ConnectionTracker  <Node(0x5209@23.111.173.226)> will not be retried for 1m because TooManyPeersFailure\n'
b'   DEBUG  05-20 20:19:12      HeaderMeatSyncer  Header Skeleton Gaps: active=0 queued=0 max=50\n'
b"   DEBUG  05-20 20:19:12           ETHPeerPool  Could not complete handshake with <Node(0x71363ae34472ff50e407547ca51fd190e702a577b3a62cdd8ad6374568861d7d4f53588c0307117c33d4b9624c776b4dc216530639573e79792fca335bcbc8a0@159.65.24.149:30308)>: HandshakeFailure('<Node(0x71363ae34472ff50e407547ca51fd190e702a577b3a62cdd8ad6374568861d7d4f53588c0307117c33d4b9624c776b4dc216530639573e79792fca335bcbc8a0@159.65.24.149:30308)> disconnected before sending auth ack',)\n"
b'  DEBUG2  05-20 20:19:12  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x7136@159.65.24.149)> | timeout: 10s | reason: HandshakeFailure\n'
b'   DEBUG  05-20 20:19:12     ConnectionTracker  <Node(0x7136@159.65.24.149)> will not be retried for 10s because HandshakeFailure\n'
b'  DEBUG2  05-20 20:19:12             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c27252b0>\n'
b'  DEBUG2  05-20 20:19:12             Transport  Waiting for 32 bytes from <Node(0x3250@178.63.67.43)>\n'
b'  DEBUG2  05-20 20:19:12             Transport  Waiting for 160 bytes from <Node(0x3250@178.63.67.43)>\n'
b'  DEBUG2  05-20 20:19:12               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:12               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Geth/v2.0.8-stable-369ce824/linux-amd64/go1.10.3', 'capabilities': (('etz', 62), ('etz', 63), ('etz', 64)), 'listen_port': 0, 'remote_pubkey': b'2PQFp\\x12\\x82\\xe7\\xaf\\xe6\\x81\\xb2\\x93\\xdc\\xf5.\\xb1r-\\xf5\\x80>\\xc5\\x16\\x7f\\xdd\\xbd/\\xadU3\\xf6\\xec\\x19E\\xa0\\x87j\\xb0\\x0f\\x9a5\\x10\\xce\\xbf\\x9d1;\\x95\\xee\\x9e\\xc4S@kd\\x8d\\x13\\xb5\\xbb\\xde\\x9e\\xad\\xc8'}\n"
b'   DEBUG  05-20 20:19:12               ETHPeer  Disconnecting from remote peer <Node(0x3250@178.63.67.43)>; reason: useless_peer\n'
b'  DEBUG2  05-20 20:19:12             Transport  Sending msg with cmd id 1 to <p2p.transport.Transport object at 0x7f08c27252b0>\n'
b'   DEBUG  05-20 20:19:12           ETHPeerPool  Could not complete handshake with <Node(0x32505146701282e7afe681b293dcf52eb1722df5803ec5167fddbd2fad5533f6ec1945a0876ab00f9a3510cebf9d313b95ee9ec453406b648d13b5bbde9eadc8@178.63.67.43:21216)>: HandshakeFailure("No matching capabilities between us (((\'eth\', 63),)) and <Node(0x3250@178.63.67.43)> (((\'etz\', 62), (\'etz\', 63), (\'etz\', 64))), disconnecting",)\n'
b'  DEBUG2  05-20 20:19:12  ConnectionTrackerServer  Received blacklist commmand: remote: <Node(0x3250@178.63.67.43)> | timeout: 10s | reason: HandshakeFailure\n'
b'   DEBUG  05-20 20:19:12     ConnectionTracker  <Node(0x3250@178.63.67.43)> will not be retried for 10s because HandshakeFailure\n'
b'   DEBUG  05-20 20:19:12   FastChainBodySyncer  (in progress, queued, max size) of bodies, receipts: [(0, 0, 2048), (0, 0, 4096)]. Write capacity? yes\n'
b'    INFO  05-20 20:19:12   FastChainBodySyncer  blks=0     txs=0      bps=0    tps=0     elapsed=5.0  head=#0 d4e5..8fa3  age=49y4m4w\n'
b'   DEBUG  05-20 20:19:13           ETHPeerPool  Could not complete handshake with <Node(0xbcc7240543fe2cf86f5e9093d05753dd83343f8fda7bf0e833f65985c73afccf8f981301e13ef49c4804491eab043647374df1c4adf85766af88a624ecc3330e@136.243.154.244:30303)>: UnreachablePeer("Can\'t reach <Node(0xbcc7240543fe2cf86f5e9093d05753dd83343f8fda7bf0e833f65985c73afccf8f981301e13ef49c4804491eab043647374df1c4adf85766af88a624ecc3330e@136.243.154.244:30303)>",)\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Got candidates from backend <p2p.peer_backend.BootnodesPeerBackend object at 0x7f08da192908> ((<Node(0x979b7fa28feeb35a4741660a16076f1943202cb72b6af70d327f053e248bab9ba81760f39d0701ef1d8f89cc1fbd2cacba0710a12cd5314d5e0c9021aa3637f9@5.1.83.226:30303)>,))\n'
b'   DEBUG  05-20 20:19:13           ETHPeerPool  Initiating 1 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Got candidates from backend <p2p.peer_backend.DiscoveryPeerBackend object at 0x7f08da1928d0> ((<Node(0x974447e5127a63b4a24fa5b923134ea1fd47c3297579d3ddfd899b788523cfd20776d3d49c92cbd3776145367bf2550fbc0105beae2b11c8a3b8da17f6df2105@35.197.128.240:30303)>, <Node(0x32505146701282e7afe681b293dcf52eb1722df5803ec5167fddbd2fad5533f6ec1945a0876ab00f9a3510cebf9d313b95ee9ec453406b648d13b5bbde9eadc8@178.63.67.43:21216)>, <Node(0x2698ce3e409dbc7d3b07d2ae1e9cc59a4ad5b5159b29fc2bae82992a0aebf1c31809020b4516f21206ed8c2cd616b1de84b88698a7e82b44d80c484257372422@35.182.40.231:30303)>, <Node(0xe464f78c05e116b5676d2170dd6a1e3b2edf742fc781460c5a5920aeaa6e4013444b7a7a454b7acfeee28f0023670e4c37b0b3100ab657ef444621132f4e27af@149.28.242.238:30303)>, <Node(0x6e4648249d3263c94bb51f1346ca6946de8d9b01438cf684dedfd2c2e36c9c811ae9d7f958abb99587f0cabdf35244fb19aa08d32a09052dbd4737d617c54b69@178.63.67.43:21221)>, <Node(0xc020de7f48f185ae07eb24381fa4a2f3f70d7d05e1856ca90435cf1401dc7e38269c2fffd2714459146dd1cda5077f3504e208fe4e9c79cf70dd61275c8c72c4@120.243.213.235:30303)>, <Node(0x8caf9fa7a2cdd1e8c7f99c55611c5769b885f67595c3820315d3413e5a2b647a6488b9bdf549dbd2465b433e098ee8b6b17793ef155213b7fca2f813d05ffb37@72.83.66.192:30303)>, <Node(0x4f0b35d7951d1442c0009992273062dd960f359e213fba31dfd22edaaf27dbc91be8d7755d31278b88c31ff18471a1f1ba842a77024028a7840441789d72ac1f@95.216.158.152:30055)>, <Node(0xb130fcb7148fe409f292aac866731809298c6087f5c263874846de266cd2e5623a4580930af5c3493c8ebc32119f4c324c8a84bc9ad7fca4487721be1a2244fc@159.65.36.247:30303)>, <Node(0x49a89bfd0084f063232cf2a6f6e937845ac638ce7a7fbad576b6326aa11453da5b0d135f089d076c700477f6a60b58fdf4645cb2240cdcee352e92cf7c0274e9@20.45.7.250:20200)>, <Node(0xb48642735f9a231e4a00c22889ff33ae35017b130d142dc9937eae4f0c0c7c9f4a21e6936064ca5cf6b5807c3d8d2c32dff71f284b11cae42c132ff02faec967@108.174.196.116:30303)>, <Node(0xc343ed5c44503ec2540c9696d84a0c152bd2fced340a192986bd002a6c6026ceb510e8720d2b9e919a7201c36db373cd47829f5f752e2d975bcde4bf3c188fe7@95.216.158.152:30041)>, <Node(0xf5029c2f6967118bdad18039592b3c20b89b3dd1c152b4fdfafb1ef7682761692533200371d4ef8f7d93165e9f40f583403e5da6678c908cf859484b62249981@34.83.194.252:30303)>, <Node(0x78de8a0916848093c73790ead81d1928bec737d565119932b98c6b100d944b7a95e94f847f689fc723399d2e31129d182f7ef3863f2b4c820abbf3ab2722344d@191.235.84.50:30303)>, <Node(0x6bb361b14ddc1364eaf4b3e2e5644e4ca36b0932b85263a10a12004e89f52fa3cad37810148a8042e9b123481b0db7768e83d0e2cc73cdfc84f5f6ca0867e17f@3.216.91.100:30303)>, <Node(0x8f83c5bb7d63d8676e1f462c98a966ba551fbc372277ebbd204e5ea8a93254617837ba7f8036a85fa4734f6d569f66b98e359d7c75ae0732d991451aad8b6cc6@51.159.1.144:30303)>, <Node(0xc17d3082d62c13f6bc4a5c81957409844babce2b26584026d92e5f63f49de6f041f0d40748489b691acd40e1e8e2905826784dde276f2fbcca6b6464b2a5ccb1@149.28.168.123:30666)>, <Node(0x7154c3ff12cee0876396611433fdc5ec63565fa57e7dcfcd57cf45ee21b62f8732536fba3c81f93082dc98a8367c0333351fb855f7593e3ab02bdf6cdb30e223@40.115.23.89:21000)>, <Node(0xa979fb575495b8d6db44f750317d0f4622bf4c2aa3365d6af7c284339968eef29b69ad0dce72a4d8db5ebb4968de0e3bec910127f134779fbcb0cb6d3331163c@52.16.188.185:30303)>, <Node(0xbae2ae26d37122eb1774983ccf002da7735d8e0c807f77d92b2eb135c76c6b259009596560ba948a462e58a63b7ba527827d4dbd331da5f173a4d6ae41d132b0@206.189.99.163:30300)>, <Node(0xd596152efad059edc8a99d4a4c607374ed6a32506b95124b59d869180a41621d5f110e70a70da8a4e819465d6a6af276e9c76049ce21c140c30bc831503bb031@46.101.156.180:30303)>, <Node(0xe5a043a6ceeaa2d17c6e737d826234f3b4b7291b3a322e250a96ba9ffe4b41ef6c63d18f3c459c33a8903d1d8992f82ea49edb08c3513d8119c1029ba43a1f15@162.255.85.142:30305)>, <Node(0x9f7a79a66e57a08defef49d5a8eb82205cc602b664dae37a64ef0707dd97cdfd2a9f01d97d188ae6fc29b1408dbb0b4f5b3944f041a1b1b2b81444e419e591d8@159.65.37.11:57955)>, <Node(0x4b32d6b5a29f2121b9d751e762d85b85eee4ca2a57227861023cd330696028f6f145cb5532e1a1b10bd2000f0094d9b379eb25567c0232dda263c446703d375c@13.209.181.243:30303)>, <Node(0x6a4235fd5ca60d08a1de148e68409cd8b50bec7c714c2e7c91263156b60aa33cd398e3a400fa78dee0e19516fbf603b106e32818eb94a04b6c9ad7646898d55b@78.46.92.52:21214)>))\n'
b'   DEBUG  05-20 20:19:13           ETHPeerPool  Initiating 10 peer connection attempts with 25 open peer slots\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x979b@5.1.83.226)>\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0xb130@159.65.36.247)>\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Connecting to <Node(0x979b@5.1.83.226)>...\n'
b'   DEBUG  05-20 20:19:13     ConnectionTracker  skipping <Node(0xb130@159.65.36.247)>, it failed because "TooManyPeersFailure" and is not usable for 56s\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x9744@35.197.128.240)>\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Connecting to <Node(0x9744@35.197.128.240)>...\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0xc020@120.243.213.235)>\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x6e46@178.63.67.43)>\n'
b'   DEBUG  05-20 20:19:13     ConnectionTracker  skipping <Node(0x6e46@178.63.67.43)>, it failed because "TooManyPeersFailure" and is not usable for 57s\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Connecting to <Node(0x8caf@72.83.66.192)>...\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x2698@35.182.40.231)>\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Connecting to <Node(0xc020@120.243.213.235)>...\n'
b'   DEBUG  05-20 20:19:13     ConnectionTracker  skipping <Node(0x2698@35.182.40.231)>, it failed because "Quick disconnect" and is not usable for 57s\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x49a8@20.45.7.250)>\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x3250@178.63.67.43)>\n'
b'   DEBUG  05-20 20:19:13     ConnectionTracker  skipping <Node(0x3250@178.63.67.43)>, it failed because "HandshakeFailure" and is not usable for 8s\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0x4f0b@95.216.158.152)>\n'
b'  DEBUG2  05-20 20:19:13  ConnectionTrackerServer  Received should connect to request: <Node(0xe464@149.28.242.238)>\n'
b'   DEBUG  05-20 20:19:13     ConnectionTracker  skipping <Node(0xe464@149.28.242.238)>, it failed because "TooManyPeersFailure" and is not usable for 57s\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Connecting to <Node(0x49a8@20.45.7.250)>...\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Connecting to <Node(0x4f0b@95.216.158.152)>...\n'
b'  DEBUG2  05-20 20:19:13             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c276a6a0>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 160 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:13               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Geth/v1.8.27-stable-4bcc0a37/linux-amd64/go1.10.4', 'capabilities': (('eth', 62), ('eth', 63)), 'listen_port': 0, 'remote_pubkey': b'\\x8c\\xaf\\x9f\\xa7\\xa2\\xcd\\xd1\\xe8\\xc7\\xf9\\x9cUa\\x1cWi\\xb8\\x85\\xf6u\\x95\\xc3\\x82\\x03\\x15\\xd3A>Z+dzd\\x88\\xb9\\xbd\\xf5I\\xdb\\xd2F[C>\\t\\x8e\\xe8\\xb6\\xb1w\\x93\\xef\\x15R\\x13\\xb7\\xfc\\xa2\\xf8\\x13\\xd0_\\xfb7'}\n"
b'   DEBUG  05-20 20:19:13               ETHPeer  Finished P2P handshake with <Node(0x8caf@72.83.66.192)>, using sub-protocol (eth, 63)\n'
b"  DEBUG2  05-20 20:19:13           ETHProtocol  Sending ETH/Status msg: {'protocol_version': 63, 'network_id': 1, 'td': 17179869184, 'best_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'  DEBUG2  05-20 20:19:13             Transport  Sending msg with cmd id 16 to <p2p.transport.Transport object at 0x7f08c276a6a0>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 112 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Got msg with cmd_id: 16\n'
b"  DEBUG2  05-20 20:19:13               ETHPeer  Successfully decoded Status (cmd_id=16) msg: {'protocol_version': 63, 'network_id': 1, 'td': 10277770790287921806208, 'best_hash': b'\\xe3\\xa6\\xf8\\x01i3>F(\\xd9]S}\\xd6\\xbej\\xc4}\\xc5\\x1a\\xed!\\x12\\xec\\xd3\\xf4\\xac\\x8b\\xca\\xbc\\xcf\\xb5', 'genesis_hash': b'\\xd4\\xe5g@\\xf8v\\xae\\xf8\\xc0\\x10\\xb8j@\\xd5\\xf5gE\\xa1\\x18\\xd0\\x90j4\\xe6\\x9a\\xec\\x8c\\r\\xb1\\xcb\\x8f\\xa3'}\n"
b'   DEBUG  05-20 20:19:13               ETHPeer  Finished (eth, 63) handshake with <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13           ETHPeerPool  Running task <coroutine object BaseService.run at 0x7f08da4820a0>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Running task <coroutine object BaseService.run at 0x7f08c275ac50>\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Running task <coroutine object BaseService.run at 0x7f08c06c5a98>\n'
b"   DEBUG  05-20 20:19:13  ResponseCandidateStream  Launching <ResponseCandidateStream(ETHPeer <Node(0x8caf@72.83.66.192)>, <class 'trinity.protocol.eth.commands.BlockHeaders'>)>\n"
b'    INFO  05-20 20:19:13           ETHPeerPool  Adding ETHPeer <Node(0x8caf@72.83.66.192)> to pool\n'
b'  DEBUG2  05-20 20:19:13             Transport  Sending msg with cmd id 19 to <p2p.transport.Transport object at 0x7f08c276a6a0>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 176 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Got msg with cmd_id: 18\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Successfully decoded Transactions (cmd_id=18) msg: (<eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0692320>,)\n'
b"  DEBUG2  05-20 20:19:13  ResponseCandidateStream  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.BlockHeaders'>})\n"
b"  DEBUG2  05-20 20:19:13    ETHChainTipMonitor  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:13      HeaderMeatSyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:13   FastChainBodySyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:13      ETHRequestServer  Adding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)> to queue; queue_size=0\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13      ETHRequestServer  Running task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08da44c360>\n'
b'  DEBUG2  05-20 20:19:13      ETHRequestServer  Task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08da44c360> finished with no errors\n'
b'   DEBUG  05-20 20:19:13  ETHHeaderChainSyncer  ETHPeer <Node(0x8caf@72.83.66.192)> announced Head TD 10277770790287921806208, which is higher than ours (17179869184), starting sync\n'
b'  DEBUG2  05-20 20:19:13  ETHHeaderChainSyncer  Running task <coroutine object BaseService.run at 0x7f08c2748d00>\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Got msg with cmd_id: 19\n'
b"  DEBUG2  05-20 20:19:13               ETHPeer  Successfully decoded GetBlockHeaders (cmd_id=19) msg: {'block_number_or_hash': 7471103, 'max_headers': 1, 'skip': 0, 'reverse': False}\n"
b"  DEBUG2  05-20 20:19:13  ResponseCandidateStream  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.BlockHeaders'>})\n"
b"  DEBUG2  05-20 20:19:13    ETHChainTipMonitor  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:13      HeaderMeatSyncer  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:13   FastChainBodySyncer  Discarding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:13      ETHRequestServer  Adding GetBlockHeaders (cmd_id=19) msg from ETHPeer <Node(0x8caf@72.83.66.192)> to queue; queue_size=0\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13        SkeletonSyncer  Running task <coroutine object SkeletonSyncer._display_stats at 0x7f08da3a28e0>\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 592 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:13      ETHRequestServer  Running task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08da44c468>\n'
b"   DEBUG  05-20 20:19:13  ETHPeerRequestHandler  ETHPeer <Node(0x8caf@72.83.66.192)> requested headers: {'block_number_or_hash': 7471103, 'max_headers': 1, 'skip': 0, 'reverse': False}\n"
b'  DEBUG2  05-20 20:19:13               ETHPeer  Got msg with cmd_id: 20\n'
b'  DEBUG2  05-20 20:19:13               ETHPeer  Successfully decoded BlockHeaders (cmd_id=20) msg: (<eth.rlp.headers.BlockHeader object at 0x7f08c0697dd8>, <eth.rlp.headers.BlockHeader object at 0x7f08c0697e10>)\n'
b'  DEBUG2  05-20 20:19:13  ResponseCandidateStream  Adding BlockHeaders (cmd_id=20) msg from ETHPeer <Node(0x8caf@72.83.66.192)> to queue; queue_size=0\n'
b"  DEBUG2  05-20 20:19:13    ETHChainTipMonitor  Discarding BlockHeaders (cmd_id=20) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:13      HeaderMeatSyncer  Discarding BlockHeaders (cmd_id=20) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:13   FastChainBodySyncer  Discarding BlockHeaders (cmd_id=20) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b"  DEBUG2  05-20 20:19:13      ETHRequestServer  Discarding BlockHeaders (cmd_id=20) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.GetReceipts'>, <class 'trinity.protocol.eth.commands.Transactions'>, <class 'trinity.protocol.eth.commands.GetBlockHeaders'>, <class 'trinity.protocol.eth.commands.NewBlockHashes'>, <class 'trinity.protocol.eth.commands.GetBlockBodies'>, <class 'trinity.protocol.eth.commands.GetNodeData'>})\n"
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'   DEBUG  05-20 20:19:13        SkeletonSyncer  Requsting chain of headers from ETHPeer <Node(0x8caf@72.83.66.192)> starting at #0\n'
b'  DEBUG2  05-20 20:19:13             Transport  Waiting for 128 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'   DEBUG  05-20 20:19:14   DAOCheckBootManager  <trinity.protocol.common.boot.DAOCheckBootManager object at 0x7f08c273bfd0> had nothing left to do, ceasing operation...\n'
b'   DEBUG  05-20 20:19:14   DAOCheckBootManager  <trinity.protocol.common.boot.DAOCheckBootManager object at 0x7f08c273bfd0> halted cleanly\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Task <coroutine object BaseService.run at 0x7f08c275ac50> finished with no errors\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Got msg with cmd_id: 18\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Successfully decoded Transactions (cmd_id=18) msg: (<eth.rlp.transactions.BaseTransactionFields object at 0x7f08c064c160>,)\n'
b"  DEBUG2  05-20 20:19:14  ResponseCandidateStream  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.BlockHeaders'>})\n"
b"  DEBUG2  05-20 20:19:14    ETHChainTipMonitor  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:14      HeaderMeatSyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:14   FastChainBodySyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Adding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)> to queue; queue_size=0\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:14             Transport  Sending msg with cmd id 0 to <p2p.transport.Transport object at 0x7f08c0688a58>\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 32 bytes from <Node(0x49a8@20.45.7.250)>\n'
b'  DEBUG2  05-20 20:19:14             Transport  Sending msg with cmd id 19 to <p2p.transport.Transport object at 0x7f08c276a6a0>\n'
b'   DEBUG  05-20 20:19:14  ETHPeerRequestHandler  Peer requested header number 7471103 that is unavailable, stopping search.\n'
b'  DEBUG2  05-20 20:19:14  ETHPeerRequestHandler  Replying to ETHPeer <Node(0x8caf@72.83.66.192)> with 0 headers\n'
b'  DEBUG2  05-20 20:19:14             Transport  Sending msg with cmd id 20 to <p2p.transport.Transport object at 0x7f08c276a6a0>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08da44c468> finished with no errors\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 54416 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Running task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08c27a6048>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08c27a6048> finished with no errors\n'
b'   DEBUG  05-20 20:19:14           ETHPeerPool  Could not complete handshake with <Node(0x4f0b35d7951d1442c0009992273062dd960f359e213fba31dfd22edaaf27dbc91be8d7755d31278b88c31ff18471a1f1ba842a77024028a7840441789d72ac1f@95.216.158.152:30055)>: UnreachablePeer("Can\'t reach <Node(0x4f0b35d7951d1442c0009992273062dd960f359e213fba31dfd22edaaf27dbc91be8d7755d31278b88c31ff18471a1f1ba842a77024028a7840441789d72ac1f@95.216.158.152:30055)>",)\n'
b'   DEBUG  05-20 20:19:14           ETHPeerPool  Could not complete handshake with <Node(0xc020de7f48f185ae07eb24381fa4a2f3f70d7d05e1856ca90435cf1401dc7e38269c2fffd2714459146dd1cda5077f3504e208fe4e9c79cf70dd61275c8c72c4@120.243.213.235:30303)>: UnreachablePeer("Can\'t reach <Node(0xc020de7f48f185ae07eb24381fa4a2f3f70d7d05e1856ca90435cf1401dc7e38269c2fffd2714459146dd1cda5077f3504e208fe4e9c79cf70dd61275c8c72c4@120.243.213.235:30303)>",)\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 176 bytes from <Node(0x49a8@20.45.7.250)>\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Got msg with cmd_id: 18\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Successfully decoded Transactions (cmd_id=18) msg: (<eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05785c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05785f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05786a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05786d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05787b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05787f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05788d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05789b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05789e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0578fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05030b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05030f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05031d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05032b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05032e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05033c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05034a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05034e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05035c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05035f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05036a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05036d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05037b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05037f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05038d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05039b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05039e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0503fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05140b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05140f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05141d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05142b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05142e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05143c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05144a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05144e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05145c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05145f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05146a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05146d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05147b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05147f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05148d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05149b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05149e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0514fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05200b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05200f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05201d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05202b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05202e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05203c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05204a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05204e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05205c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05205f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05206a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05206d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05207b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05207f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05208d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05209b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c05209e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c0520fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e0b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e0f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e1d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e2b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e2e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e3c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e4a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e4e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e5c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e5f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e6a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e6d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e7b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e7f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e8d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e9b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052e9e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ea20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ea58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ea90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eb00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eb38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eb70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ebe0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ec18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ec50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ec88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ecc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ecf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ed30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ed68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eda0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052edd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ee10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ee48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ee80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eeb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052eef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ef28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ef60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052ef98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c052efd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb0b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb0f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb1d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb2b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb2e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb3c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb4a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb4e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb5c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb5f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb6a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb6d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb7b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb7f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb8d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb9b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bb9e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bba20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bba58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bba90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbb00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbb38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbb70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbbe0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbc18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbc50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbc88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbcc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbcf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbd30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbd68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbda0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbdd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbe10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbe48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbe80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbeb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbf28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbf60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbf98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04bbfd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c90b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c90f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c91d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c92b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c92e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c93c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c94a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c94e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c95c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c95f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c96a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c96d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c97b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c97f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c98d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c99b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c99e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04c9fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d60b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d60f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d61d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d62b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d62e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d63c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d64a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d64e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d65c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d65f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d66a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d66d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d67b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d67f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d68d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d69b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d69e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04d6fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e30b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e30f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e31d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e32b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e32e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e33c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e34a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e34e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e35c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e35f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e36a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e36d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e37b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e37f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e38d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3908>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3940>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3978>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e39b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e39e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3a20>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3a58>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3a90>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3ac8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3b00>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3b38>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3b70>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3ba8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3be0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3c18>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3c50>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3c88>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3cc0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3cf8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3d30>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3d68>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3da0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3dd8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3e10>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3e48>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3e80>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3eb8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3ef0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3f28>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3f60>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3f98>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04e3fd0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2048>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2080>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f20b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f20f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2128>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2160>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2198>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f21d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2208>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2240>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2278>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f22b0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f22e8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2320>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2358>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2390>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f23c8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2400>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2438>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2470>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f24a8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f24e0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2518>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2550>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2588>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f25c0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f25f8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2630>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2668>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f26a0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f26d8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2710>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2748>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2780>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f27b8>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f27f0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2828>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2860>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2898>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f28d0>, <eth.rlp.transactions.BaseTransactionFields object at 0x7f08c04f2908>)\n'
b"  DEBUG2  05-20 20:19:14  ResponseCandidateStream  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.BlockHeaders'>})\n"
b"  DEBUG2  05-20 20:19:14    ETHChainTipMonitor  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:14      HeaderMeatSyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:14   FastChainBodySyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Adding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)> to queue; queue_size=0\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Got msg with cmd_id: 0\n'
b"  DEBUG2  05-20 20:19:14               ETHPeer  Successfully decoded Hello (cmd_id=0) msg: {'version': 5, 'client_version_string': 'Geth/austinbeerworks/v1.8.19-stable-dae82f09/linux-amd64/go1.11.2', 'capabilities': (('eth', 62), ('eth', 63)), 'listen_port': 0, 'remote_pubkey': b'I\\xa8\\x9b\\xfd\\x00\\x84\\xf0c#,\\xf2\\xa6\\xf6\\xe97\\x84Z\\xc68\\xcez\\x7f\\xba\\xd5v\\xb62j\\xa1\\x14S\\xda[\\r\\x13_\\x08\\x9d\\x07lp\\x04w\\xf6\\xa6\\x0bX\\xfd\\xf4d\\\\\\xb2$\\x0c\\xdc\\xee5.\\x92\\xcf|\\x02t\\xe9'}\n"
b'   DEBUG  05-20 20:19:14               ETHPeer  Finished P2P handshake with <Node(0x49a8@20.45.7.250)>, using sub-protocol (eth, 63)\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 144 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Running task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08c06e0830>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08c06e0830> finished with no errors\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Got msg with cmd_id: 18\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Successfully decoded Transactions (cmd_id=18) msg: (<eth.rlp.transactions.BaseTransactionFields object at 0x7f08c27846d8>,)\n'
b"  DEBUG2  05-20 20:19:14  ResponseCandidateStream  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.BlockHeaders'>})\n"
b"  DEBUG2  05-20 20:19:14    ETHChainTipMonitor  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset({<class 'trinity.protocol.eth.commands.NewBlock'>})\n"
b'  DEBUG2  05-20 20:19:14      HeaderMeatSyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:14   FastChainBodySyncer  Discarding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)>; not subscribed to msg type; subscriptions: frozenset()\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Adding Transactions (cmd_id=18) msg from ETHPeer <Node(0x8caf@72.83.66.192)> to queue; queue_size=0\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 32 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:14             Transport  Waiting for 71072 bytes from <Node(0x8caf@72.83.66.192)>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Running task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08c06e0c50>\n'
b'  DEBUG2  05-20 20:19:14      ETHRequestServer  Task <coroutine object BaseRequestServer._quiet_handle_msg at 0x7f08c06e0c50> finished with no errors\n'
b'  DEBUG2  05-20 20:19:14               ETHPeer  Got msg with cmd_id: 18\n'
------------------------------ Captured log call -------------------------------
ERROR  05-20 20:19:02             plugin.py  Task exception was never retrieved
future: <Task finished coro=<AsyncProcessRunner.kill_after_timeout() done, defined at /home/circleci/repo/trinity/tools/async_process_runner.py:63> exception=TimeoutError('Killed process after 30 seconds',)>
Traceback (most recent call last):
  File "/home/circleci/repo/trinity/tools/async_process_runner.py", line 66, in kill_after_timeout
    raise TimeoutError(f'Killed process after {timeout_sec} seconds')
TimeoutError: Killed process after 30 seconds

How can it be fixed

🤷‍♂️ haven't looked into it

@carver
Copy link
Contributor Author

carver commented May 20, 2019

Ok, so this seems to be that we were trying to read a crazy long string from the output/log: more than 64KiB!

The longest line in the log is clearly too long, but doesn't appear to be quite that long. I'll cut that one down and we'll see if it ever comes back.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant