connector

This commit is contained in:
4tochka 2019-05-08 01:33:05 +04:00
parent 2df627b1d7
commit 652b67c95b

View File

@ -132,9 +132,9 @@ class UTXO():
def get(self, key, block_height):
self._requests += 1
try:
i = self.cached.get(key)
# del self.cached[key]
# self.destroyed_utxo += 1
i = self.cached[key]
del self.cached[key]
self.destroyed_utxo += 1
try:
self.destroyed[block_height].add(key)
except: