connector
This commit is contained in:
parent
2df627b1d7
commit
652b67c95b
@ -132,9 +132,9 @@ class UTXO():
|
|||||||
def get(self, key, block_height):
|
def get(self, key, block_height):
|
||||||
self._requests += 1
|
self._requests += 1
|
||||||
try:
|
try:
|
||||||
i = self.cached.get(key)
|
i = self.cached[key]
|
||||||
# del self.cached[key]
|
del self.cached[key]
|
||||||
# self.destroyed_utxo += 1
|
self.destroyed_utxo += 1
|
||||||
try:
|
try:
|
||||||
self.destroyed[block_height].add(key)
|
self.destroyed[block_height].add(key)
|
||||||
except:
|
except:
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user