Correct tx status human output
This commit is contained in:
parent
bf166af544
commit
772781c1b8
@ -1,3 +1,5 @@
|
||||
- 0.3.1
|
||||
* Fix missing application of status on tx result
|
||||
- 0.3.0
|
||||
* Implement chainlib with new arg and config handling
|
||||
* Implement cli tools on settings module
|
||||
|
@ -658,7 +658,7 @@ class Tx(BaseTx, Src):
|
||||
|
||||
|
||||
def apply_receipt(self, rcpt, strict=False):
|
||||
result = TxResult(rcpt)
|
||||
result = TxResult(src=rcpt)
|
||||
self.apply_result(result)
|
||||
|
||||
|
||||
@ -754,9 +754,9 @@ input {}
|
||||
if self.result != None and self.result.status != Status.PENDING:
|
||||
s += """gas_used {}
|
||||
""".format(
|
||||
self.result.fee_cost,
|
||||
status = self.result.status.name
|
||||
self.result.fee_cost,
|
||||
)
|
||||
status = self.result.status.name
|
||||
|
||||
s += 'status ' + status + '\n'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user