connector

This commit is contained in:
4tochka 2019-05-09 01:13:52 +04:00
parent 6a76dcb9c3
commit f40d1610ab

View File

@ -614,15 +614,18 @@ class Connector:
if self.utxo:
for i in tx["vOut"]:
out = tx["vOut"][i]
# if self.skip_opreturn and out["nType"] in (3, 8):
# continue
pointer = (block_height << 42) + (block_index << 21) + i
try:
address = out["scriptPubKey"]
tx["vOut"][i]["__spent__"]
except:
address = b"".join((bytes([out["nType"]]), out["addressHash"]))
self.utxo.set(b"".join((tx["txId"], int_to_bytes(i))), pointer, out["value"], address)
out = tx["vOut"][i]
# if self.skip_opreturn and out["nType"] in (3, 8):
# continue
pointer = (block_height << 42) + (block_index << 21) + i
try:
address = out["scriptPubKey"]
except:
address = b"".join((bytes([out["nType"]]), out["addressHash"]))
self.utxo.set(b"".join((tx["txId"], int_to_bytes(i))), pointer, out["value"], address)
self.tx_cache.set(tx["txId"], True)
try: