connector

This commit is contained in:
4tochka 2019-05-17 14:33:57 +04:00
parent a9866a841f
commit 14edc4e8d8

View File

@ -625,7 +625,10 @@ class Connector:
tx["vIn"][i]["coin"] = inp["_a_"] tx["vIn"][i]["coin"] = inp["_a_"]
c += 1 c += 1
self.aa += 1 self.aa += 1
self.utxo.deleted.add(outpoint) try:
self.utxo.get(outpoint)
except:
self.utxo.deleted.add(outpoint)
except: except:
r = self.utxo.get(outpoint) r = self.utxo.get(outpoint)
if r: if r: