10 lines
161 B
Python
10 lines
161 B
Python
from .base import SyncFilter
|
|
|
|
|
|
class LogFilter(SyncFilter):
|
|
|
|
def filter(self, conn, block, tx):
|
|
logg.debug('block {} tx {}'.format(block, tx))
|
|
|
|
|