chainsyncer/chainsyncer/filter.py

13 lines
216 B
Python

class SyncFilter:
def common_name(self):
raise NotImplementedError()
def sum(self):
raise NotImplementedError()
def filter(self, conn, block, tx):
raise NotImplementedError()