chainlib-eth

Ethereum implementation of the chainlib interface
Log | Files | Refs | README | LICENSE

commit 2dd92fe74b5c5e1ef44d8e48ba83941a4dc473ec
parent 129e25bbf5dd033461d5b202a0df672d1b4e8e65
Author: lash <dev@holbrook.no>
Date:   Tue, 19 Apr 2022 19:46:11 +0000

Add fee limit, fee price to Tx object

Diffstat:
Mchainlib/eth/tx.py | 3+++
Msetup.cfg | 2+-
2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/chainlib/eth/tx.py b/chainlib/eth/tx.py @@ -556,6 +556,9 @@ class Tx(BaseTx): self.outputs = [to_checksum(address_from)] self.contract = None + self.fee_limit = self.gas_limit + self.fee_price = self.gas_price + try: inpt = src['input'] except KeyError: diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib-eth -version = 0.1.0 +version = 0.1.1 description = Ethereum implementation of the chainlib interface author = Louis Holbrook author_email = dev@holbrook.no