chainsyncer/chainsyncer/client/block.py
2021-02-11 09:02:17 +01:00

17 lines
217 B
Python

class Block:
def __init__(self, hsh, obj):
self.hash = hsh
self.obj = obj
def tx(self, idx):
return NotImplementedError
def number(self):
return NotImplementedError