Merge branch 'jangko-fix_244'
This commit is contained in:
commit
91bf7630ae
|
@ -300,3 +300,7 @@ proc executeOpcodes(computation: BaseComputation) =
|
|||
let msg = getCurrentExceptionMsg()
|
||||
computation.setError(&"Opcode Dispatch Error msg={msg}, depth={computation.msg.depth}", true)
|
||||
computation.nextProc()
|
||||
|
||||
if computation.isError():
|
||||
if computation.tracingEnabled: computation.traceError()
|
||||
debug "executeOpcodes error", msg=computation.error.info
|
||||
|
|
|
@ -120,9 +120,10 @@ proc traceError*(tracer: var TransactionTracer, c: BaseComputation) =
|
|||
j["error"] = %(c.error.info)
|
||||
trace "Error", json = j.pretty()
|
||||
|
||||
# TODO: figure out how to get gasCost
|
||||
# when contract execution failed before traceOpCodeEnded called
|
||||
# because exception raised
|
||||
#j["gasCost"] = %
|
||||
# even though the gasCost is incorrect,
|
||||
# we have something to display,
|
||||
# it is an error anyway
|
||||
let gasRemaining = j["gas"].getInt()
|
||||
j["gasCost"] = %(gasRemaining - c.gasMeter.gasRemaining)
|
||||
|
||||
tracer.trace["failed"] = %true
|
||||
|
|
|
@ -82,8 +82,6 @@ proc execComputation*(computation: var BaseComputation): bool =
|
|||
result = computation.isSuccess
|
||||
if result:
|
||||
computation.vmState.addLogs(computation.logEntries)
|
||||
else:
|
||||
if computation.tracingEnabled: computation.traceError()
|
||||
|
||||
proc refundGas*(computation: BaseComputation, tx: Transaction, sender: EthAddress): GasInt =
|
||||
let
|
||||
|
|
|
@ -283,7 +283,8 @@
|
|||
"0000000000000000000000000000000000000000000000000000000000000000",
|
||||
"0000000000000000000000000000000000000000000000000000000000000060"
|
||||
],
|
||||
"error": "Opcode Dispatch Error msg=Out of gas: Needed 20000 - Remaining 412 - Reason: SSTORE: 9a049f5d18c239efaa258af9f3e7002949a977a0[0] -> 924236965777326770894530693462975209021625492404 (0), depth=0"
|
||||
"error": "Opcode Dispatch Error msg=Out of gas: Needed 20000 - Remaining 412 - Reason: SSTORE: 9a049f5d18c239efaa258af9f3e7002949a977a0[0] -> 924236965777326770894530693462975209021625492404 (0), depth=0",
|
||||
"gasCost": 0
|
||||
}
|
||||
],
|
||||
"stateDiff": {
|
||||
|
@ -704,7 +705,8 @@
|
|||
"0000000000000000000000000000000000000000000000000000000000000000",
|
||||
"0000000000000000000000000000000000000000000000000000000000000060"
|
||||
],
|
||||
"error": "Opcode Dispatch Error msg=Out of gas: Needed 20000 - Remaining 412 - Reason: SSTORE: 9a049f5d18c239efaa258af9f3e7002949a977a0[0] -> 924236965777326770894530693462975209021625492404 (0), depth=0"
|
||||
"error": "Opcode Dispatch Error msg=Out of gas: Needed 20000 - Remaining 412 - Reason: SSTORE: 9a049f5d18c239efaa258af9f3e7002949a977a0[0] -> 924236965777326770894530693462975209021625492404 (0), depth=0",
|
||||
"gasCost": 0
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue