connector
This commit is contained in:
parent
9fa0f6a081
commit
094da53d0d
@ -432,7 +432,7 @@ class Connector:
|
|||||||
self.coins - self.destroyed_coins))
|
self.coins - self.destroyed_coins))
|
||||||
self.log.debug("total tx fetch time %s;" % self.total_received_tx_time)
|
self.log.debug("total tx fetch time %s;" % self.total_received_tx_time)
|
||||||
self.log.debug("total blocks processing time %s;" % self.blocks_processing_time)
|
self.log.debug("total blocks processing time %s;" % self.blocks_processing_time)
|
||||||
t = int(self.start_time - time.time())
|
t = int(time.time() - self.start_time)
|
||||||
h = t // 3600
|
h = t // 3600
|
||||||
m = (t % 3600 ) // 60
|
m = (t % 3600 ) // 60
|
||||||
s = (t % 3600) % 60
|
s = (t % 3600) % 60
|
||||||
|
|||||||
@ -155,7 +155,7 @@ class UTXO():
|
|||||||
l = set(self.missed)
|
l = set(self.missed)
|
||||||
rows = []
|
rows = []
|
||||||
[rows.append({"outpoint": k, "data": self.get(k)}) for k in l]
|
[rows.append({"outpoint": k, "data": self.get(k)}) for k in l]
|
||||||
|
self.log.critical(str(rows))
|
||||||
for i in l:
|
for i in l:
|
||||||
try:
|
try:
|
||||||
self.missed.remove(i)
|
self.missed.remove(i)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user