Remove some dead debug code

This commit is contained in:
Neil Booth 2018-08-06 18:17:46 +09:00
parent 55da063f6b
commit c141bfffd9

View File

@ -457,9 +457,7 @@ class SessionManager(object):
if height != self._hc_height:
self._hc_height = height
hc = self._history_cache
hashXs = set(hc).intersection(touched)
text = [hash_to_hex_str(hashX) for hashX in hashXs]
for hashX in hashXs:
for hashX in set(hc).intersection(touched):
del hc[hashX]
async with TaskGroup() as group: