cic-sync-filter/cic_sync_filter/log.py

10 lines
161 B
Python
Raw Normal View History

2022-04-21 00:41:19 +02:00
from .base import SyncFilter
class LogFilter(SyncFilter):
2022-04-23 11:58:17 +02:00
def filter(self, conn, block, tx):
2022-04-21 00:41:19 +02:00
logg.debug('block {} tx {}'.format(block, tx))