connector

This commit is contained in:
4tochka 2019-05-10 00:37:16 +04:00
parent af3404ef1d
commit ea77d5d658

View File

@ -34,7 +34,7 @@ class UTXO():
self.outs_total = 0
def set(self, outpoint, pointer, amount, address):
self.cached[outpoint] = [pointer, amount, address]
self.cached[outpoint] = (pointer, amount, address)
self.outs_total += 1
if pointer:
self.last_cached_block = pointer >> 42