mirror of
git://holbrook.no/eth-monitor.git
synced 2025-07-04 07:52:48 +02:00
16 lines
274 B
Python
16 lines
274 B
Python
# standard imports
|
|
import logging
|
|
|
|
logg = logging.getLogger(__name__)
|
|
|
|
|
|
class Filter:
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
pass
|
|
|
|
|
|
def filter(self, conn, block, tx, db_session=None):
|
|
logg.debug('PLAIN MOCK for {} {}'.format(block.number, tx.index))
|