chainsyncer/chainsyncer/filter.py

13 lines
216 B
Python
Raw Normal View History

2021-02-17 12:44:35 +01:00
class SyncFilter:
2021-08-26 10:09:47 +02:00
def common_name(self):
raise NotImplementedError()
2021-08-27 12:43:12 +02:00
def sum(self):
raise NotImplementedError()
2021-02-17 12:44:35 +01:00
def filter(self, conn, block, tx):
raise NotImplementedError()