fix regression
This commit is contained in:
parent
cd765bf452
commit
4f6f564626
|
@ -258,7 +258,7 @@ proc homesteadVM(computation: var BaseComputation) =
|
||||||
|
|
||||||
proc updateOpcodeExec*(computation: var BaseComputation, fork: Fork) =
|
proc updateOpcodeExec*(computation: var BaseComputation, fork: Fork) =
|
||||||
case fork
|
case fork
|
||||||
of FkFrontier:
|
of FkFrontier..FkThawing:
|
||||||
computation.opCodeExec = frontierVM
|
computation.opCodeExec = frontierVM
|
||||||
computation.frontierVM()
|
computation.frontierVM()
|
||||||
of FkHomestead..FkSpurious:
|
of FkHomestead..FkSpurious:
|
||||||
|
|
|
@ -115,14 +115,14 @@ proc traceOpCodeEnded*(tracer: var TransactionTracer, c: BaseComputation, op: Op
|
||||||
trace "Op", json = j.pretty()
|
trace "Op", json = j.pretty()
|
||||||
|
|
||||||
proc traceError*(tracer: var TransactionTracer, c: BaseComputation) =
|
proc traceError*(tracer: var TransactionTracer, c: BaseComputation) =
|
||||||
|
if tracer.trace["structLogs"].elems.len > 0:
|
||||||
let j = tracer.trace["structLogs"].elems[^1]
|
let j = tracer.trace["structLogs"].elems[^1]
|
||||||
|
j["error"] = %(c.error.info)
|
||||||
|
trace "Error", json = j.pretty()
|
||||||
|
|
||||||
# TODO: figure out how to get gasCost
|
# TODO: figure out how to get gasCost
|
||||||
# when contract execution failed before traceOpCodeEnded called
|
# when contract execution failed before traceOpCodeEnded called
|
||||||
# because exception raised
|
# because exception raised
|
||||||
#j["gasCost"] = %
|
#j["gasCost"] = %
|
||||||
|
|
||||||
j["error"] = %(c.error.info)
|
|
||||||
tracer.trace["failed"] = %true
|
tracer.trace["failed"] = %true
|
||||||
|
|
||||||
trace "Error", json = j.pretty()
|
|
||||||
|
|
|
@ -704,7 +704,7 @@
|
||||||
"0000000000000000000000000000000000000000000000000000000000000000",
|
"0000000000000000000000000000000000000000000000000000000000000000",
|
||||||
"0000000000000000000000000000000000000000000000000000000000000060"
|
"0000000000000000000000000000000000000000000000000000000000000060"
|
||||||
],
|
],
|
||||||
"error": ""
|
"error": "Invalid instruction, received an opcode not implemented in the current fork."
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue