Fix get cli tool, src generation bug

This commit is contained in:
lash 2022-05-10 19:02:49 +00:00
parent 23f977482c
commit 7b7496a374
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
3 changed files with 9 additions and 9 deletions

View File

@ -523,7 +523,7 @@ class TxResult(BaseTxResult, Src):
def apply_src(self, v):
self.contract = None
super(TxResult, self).apply_src(v)
v = super(TxResult, self).apply_src(v)
self.set_hash(v['transaction_hash'])
try:
@ -697,8 +697,8 @@ class Tx(BaseTx, Src):
:returns: Wire format, in hex
"""
if self.wire == None:
b = pack(self.src(), chain_spec)
self.wire = add_0x(b.hex())
b = pack(self.src, chain_spec)
self.set_wire(add_0x(b.hex()))
return self.wire
@ -750,7 +750,7 @@ input {}
if self.status != Status.PENDING:
s += """gas_used {}
""".format(
self.gas_used,
self.result.fee_cost,
)
s += 'status ' + self.status.name + '\n'
@ -762,7 +762,7 @@ tx_index {}
""".format(
self.block.number,
self.block.hash,
self.tx_index,
self.result.tx_index,
)
@ -775,7 +775,7 @@ tx_index {}
if self.wire != None:
s += """src {}
""".format(
self.wire,
str(self.wire),
)
return s

View File

@ -1,7 +1,7 @@
funga-eth~=0.6.1
pysha3==1.0.2
hexathon~=0.1.6
hexathon~=0.1.7
websocket-client==0.57.0
potaahto~=0.1.1
chainlib~=0.1.2
chainlib~=0.2.0
confini~=0.6.0

View File

@ -1,6 +1,6 @@
[metadata]
name = chainlib-eth
version = 0.2.0
version = 0.2.1
description = Ethereum implementation of the chainlib interface
author = Louis Holbrook
author_email = dev@holbrook.no