Browse Source

Remove some dead debug code

patch-2
Neil Booth 7 years ago
parent
commit
c141bfffd9
  1. 4
      electrumx/server/session.py

4
electrumx/server/session.py

@ -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:

Loading…
Cancel
Save