diff --git a/CHANGELOG b/CHANGELOG index fb4435a..99a2ec2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +- 0.1.3 + * Add block author field +- 0.1.2 + * Upgrade chainlib dep - 0.1.1 * Add fee_limit, fee_price alias to Tx object - 0.1.0: diff --git a/chainlib/eth/block.py b/chainlib/eth/block.py index e2bf10c..4628312 100644 --- a/chainlib/eth/block.py +++ b/chainlib/eth/block.py @@ -98,6 +98,7 @@ class Block(BaseBlock): self.timestamp = int(strip_0x(src['timestamp']), 16) except TypeError: self.timestamp = int(src['timestamp']) + self.author = src['author'] def get_tx(self, tx_hash): diff --git a/setup.cfg b/setup.cfg index d75ac9f..1452929 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib-eth -version = 0.1.2 +version = 0.1.3 description = Ethereum implementation of the chainlib interface author = Louis Holbrook author_email = dev@holbrook.no