connector
This commit is contained in:
parent
a2691355fc
commit
6aa9033722
@ -253,12 +253,6 @@ class Worker:
|
||||
blocks[x]["rawTx"][y]["vOut"][i]["_s_"] = self.destroyed_coins[pointer]
|
||||
except: pass
|
||||
|
||||
for i in blocks[x]["rawTx"][y]["vIn"]:
|
||||
try:
|
||||
self.log.critical(str(blocks[x]["rawTx"][y]["vIn"][i]["_c_"]))
|
||||
except Exception as err:
|
||||
self.log.critical(str(err))
|
||||
|
||||
blocks[x] = pickle.dumps(blocks[x])
|
||||
|
||||
self.pipe_sent_msg(b'result', pickle.dumps(blocks))
|
||||
|
||||
@ -593,6 +593,7 @@ class Connector:
|
||||
stxo, missed = set(), set()
|
||||
for i in tx["vIn"]:
|
||||
inp = tx["vIn"][i]
|
||||
self.log.critical(">>> " + str(inp["_c_"]))
|
||||
outpoint = b"".join((inp["txId"], int_to_bytes(inp["vOut"])))
|
||||
try:
|
||||
stxo.add(outpoint, tx["vIn"][i]["_c_"])
|
||||
|
||||
Loading…
Reference in New Issue
Block a user