Fix wrong symbol for rpc call in eth-encode
This commit is contained in:
parent
53cea0817e
commit
80e5339886
@ -144,7 +144,7 @@ def main():
|
|||||||
tx_format = TxFormat.RLP_SIGNED
|
tx_format = TxFormat.RLP_SIGNED
|
||||||
(tx_hash_hex, o) = c.finalize(tx, tx_format=tx_format)
|
(tx_hash_hex, o) = c.finalize(tx, tx_format=tx_format)
|
||||||
if send:
|
if send:
|
||||||
r = conn.do(r)
|
r = conn.do(o)
|
||||||
print(r)
|
print(r)
|
||||||
else:
|
else:
|
||||||
if config.get('_RAW'):
|
if config.get('_RAW'):
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[metadata]
|
[metadata]
|
||||||
name = chainlib-eth
|
name = chainlib-eth
|
||||||
version = 0.0.10a20
|
version = 0.0.10a21
|
||||||
description = Ethereum implementation of the chainlib interface
|
description = Ethereum implementation of the chainlib interface
|
||||||
author = Louis Holbrook
|
author = Louis Holbrook
|
||||||
author_email = dev@holbrook.no
|
author_email = dev@holbrook.no
|
||||||
@ -14,6 +14,7 @@ classifiers =
|
|||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
Operating System :: OS Independent
|
Operating System :: OS Independent
|
||||||
Development Status :: 3 - Alpha
|
Development Status :: 3 - Alpha
|
||||||
|
Topic :: Software Development :: Libraries
|
||||||
Environment :: Console
|
Environment :: Console
|
||||||
Intended Audience :: Developers
|
Intended Audience :: Developers
|
||||||
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
||||||
|
Loading…
Reference in New Issue
Block a user