connector

This commit is contained in:
4tochka 2019-05-27 23:05:04 +04:00
parent 6347e857a8
commit 9fa0f6a081
2 changed files with 2 additions and 1 deletions

View File

@ -432,7 +432,7 @@ class Connector:
self.coins - self.destroyed_coins))
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)
t = int(self.start_time - time.time())
h = t // 3600
m = (t % 3600 ) // 60
s = (t % 3600) % 60

View File

@ -4,6 +4,7 @@ import asyncio
from collections import OrderedDict
from pybtc import MRU
import traceback
import rocksdb
class UTXO():
def __init__(self, db, loop, log, cache_size):