mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
Removes logging txids list from every block
The list of transactions can be queried afterwards and it is currently flooding the log files. I may consider putting it back once we have a log parser, but it seems pretty unnecessary.
This commit is contained in:
@@ -275,7 +275,6 @@ class Responder:
|
|||||||
|
|
||||||
if len(self.trackers) > 0 and block is not None:
|
if len(self.trackers) > 0 and block is not None:
|
||||||
txids = block.get("tx")
|
txids = block.get("tx")
|
||||||
logger.info("List of transactions", txids=txids)
|
|
||||||
|
|
||||||
if self.last_known_block == block.get("previousblockhash"):
|
if self.last_known_block == block.get("previousblockhash"):
|
||||||
self.check_confirmations(txids)
|
self.check_confirmations(txids)
|
||||||
|
|||||||
@@ -144,7 +144,6 @@ class Watcher:
|
|||||||
|
|
||||||
if len(self.appointments) > 0 and block is not None:
|
if len(self.appointments) > 0 and block is not None:
|
||||||
txids = block.get("tx")
|
txids = block.get("tx")
|
||||||
logger.info("List of transactions", txids=txids)
|
|
||||||
|
|
||||||
expired_appointments = [
|
expired_appointments = [
|
||||||
uuid
|
uuid
|
||||||
|
|||||||
Reference in New Issue
Block a user