Compare commits

...

2 Commits

Author SHA1 Message Date
lash a71b3d6388
Add changelog detail 2022-04-26 21:36:44 +00:00
lash 2dd92fe74b
Add fee limit, fee price to Tx object 2022-04-19 19:46:11 +00:00
3 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,5 @@
- 0.1.1
* Add fee_limit, fee_price alias to Tx object
- 0.1.0:
* Allow nonce ommission in encode when not tx mode
* Add rcpt src to tx object

View File

@ -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:

View File

@ -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