chainlib-eth

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

commit 80e5339886e626240491d67e4a190a0f06c879d0
parent 53cea0817e854372b789899707776da8a60ef497
Author: nolash <dev@holbrook.no>
Date:   Thu,  4 Nov 2021 12:20:42 +0100

Fix wrong symbol for rpc call in eth-encode

Diffstat:
Mchainlib/eth/runnable/encode.py | 2+-
Msetup.cfg | 3++-
2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/chainlib/eth/runnable/encode.py b/chainlib/eth/runnable/encode.py @@ -144,7 +144,7 @@ def main(): tx_format = TxFormat.RLP_SIGNED (tx_hash_hex, o) = c.finalize(tx, tx_format=tx_format) if send: - r = conn.do(r) + r = conn.do(o) print(r) else: if config.get('_RAW'): diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainlib-eth -version = 0.0.10a20 +version = 0.0.10a21 description = Ethereum implementation of the chainlib interface author = Louis Holbrook author_email = dev@holbrook.no @@ -14,6 +14,7 @@ classifiers = Programming Language :: Python :: 3 Operating System :: OS Independent Development Status :: 3 - Alpha + Topic :: Software Development :: Libraries Environment :: Console Intended Audience :: Developers License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)