diff --git a/chainlib/eth/block.py b/chainlib/eth/block.py index 2a0c328..7114f08 100644 --- a/chainlib/eth/block.py +++ b/chainlib/eth/block.py @@ -67,7 +67,9 @@ class Block(BaseBlock): :type src: dict :todo: Add hex to number parse to normalize """ - + + tx_generator = Tx + def __init__(self, src): self.hash = src['hash'] try: diff --git a/setup.cfg b/setup.cfg index b1346a5..f3f6812 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib-eth -version = 0.0.9a2 +version = 0.0.9a3 description = Ethereum implementation of the chainlib interface author = Louis Holbrook author_email = dev@holbrook.no