Fix logging bug
This commit is contained in:
parent
4e26e0fe96
commit
af3ae6429e
@ -688,6 +688,7 @@ class BlockProcessor(server.db.DB):
|
|||||||
# UTXO state may have keys in common with our write cache or
|
# UTXO state may have keys in common with our write cache or
|
||||||
# may be in the DB already.
|
# may be in the DB already.
|
||||||
flush_start = time.time()
|
flush_start = time.time()
|
||||||
|
delete_count = len(self.db_deletes) // 2
|
||||||
|
|
||||||
batch_delete = batch.delete
|
batch_delete = batch.delete
|
||||||
for key in self.db_deletes:
|
for key in self.db_deletes:
|
||||||
@ -707,12 +708,10 @@ class BlockProcessor(server.db.DB):
|
|||||||
'adds, {:,d} spends in {:.1f}s, committing...'
|
'adds, {:,d} spends in {:.1f}s, committing...'
|
||||||
.format(self.height - self.db_height,
|
.format(self.height - self.db_height,
|
||||||
self.tx_count - self.db_tx_count,
|
self.tx_count - self.db_tx_count,
|
||||||
len(self.utxo_cache),
|
len(self.utxo_cache), delete_count,
|
||||||
len(self.db_deletes) // 2,
|
|
||||||
time.time() - flush_start))
|
time.time() - flush_start))
|
||||||
|
|
||||||
self.utxo_cache = {}
|
self.utxo_cache = {}
|
||||||
self.db_deletes = []
|
|
||||||
self.utxo_flush_count = self.flush_count
|
self.utxo_flush_count = self.flush_count
|
||||||
self.db_tx_count = self.tx_count
|
self.db_tx_count = self.tx_count
|
||||||
self.db_height = self.height
|
self.db_height = self.height
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user