mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-12 21:34:33 +00:00
Merge branch 'fix_244' of github.com:jangko/nimbus into jangko-fix_244
This commit is contained in:
commit
8800cb5fe5
@ -300,3 +300,7 @@ proc executeOpcodes(computation: BaseComputation) =
|
|||||||
let msg = getCurrentExceptionMsg()
|
let msg = getCurrentExceptionMsg()
|
||||||
computation.setError(&"Opcode Dispatch Error msg={msg}, depth={computation.msg.depth}", true)
|
computation.setError(&"Opcode Dispatch Error msg={msg}, depth={computation.msg.depth}", true)
|
||||||
computation.nextProc()
|
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)
|
j["error"] = %(c.error.info)
|
||||||
trace "Error", json = j.pretty()
|
trace "Error", json = j.pretty()
|
||||||
|
|
||||||
# TODO: figure out how to get gasCost
|
# even though the gasCost is incorrect,
|
||||||
# when contract execution failed before traceOpCodeEnded called
|
# we have something to display,
|
||||||
# because exception raised
|
# it is an error anyway
|
||||||
#j["gasCost"] = %
|
let gasRemaining = j["gas"].getInt()
|
||||||
|
j["gasCost"] = %(gasRemaining - c.gasMeter.gasRemaining)
|
||||||
|
|
||||||
tracer.trace["failed"] = %true
|
tracer.trace["failed"] = %true
|
||||||
|
@ -82,8 +82,6 @@ proc execComputation*(computation: var BaseComputation): bool =
|
|||||||
result = computation.isSuccess
|
result = computation.isSuccess
|
||||||
if result:
|
if result:
|
||||||
computation.vmState.addLogs(computation.logEntries)
|
computation.vmState.addLogs(computation.logEntries)
|
||||||
else:
|
|
||||||
if computation.tracingEnabled: computation.traceError()
|
|
||||||
|
|
||||||
proc refundGas*(computation: BaseComputation, tx: Transaction, sender: EthAddress): GasInt =
|
proc refundGas*(computation: BaseComputation, tx: Transaction, sender: EthAddress): GasInt =
|
||||||
let
|
let
|
||||||
|
6
tests/fixtures/TracerTests/block46402.json
vendored
6
tests/fixtures/TracerTests/block46402.json
vendored
@ -283,7 +283,8 @@
|
|||||||
"0000000000000000000000000000000000000000000000000000000000000000",
|
"0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"0000000000000000000000000000000000000000000000000000000000000060"
|
"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": {
|
"stateDiff": {
|
||||||
@ -704,7 +705,8 @@
|
|||||||
"0000000000000000000000000000000000000000000000000000000000000000",
|
"0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"0000000000000000000000000000000000000000000000000000000000000060"
|
"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…
x
Reference in New Issue
Block a user