mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-24 19:19:21 +00:00
remove error field from evm CallResult
This commit is contained in:
parent
08f8652790
commit
71273f2f4c
@ -46,7 +46,6 @@ type
|
|||||||
logEntries*: seq[Log] # Output logs.
|
logEntries*: seq[Log] # Output logs.
|
||||||
stack*: Stack # EVM stack on return (for test only).
|
stack*: Stack # EVM stack on return (for test only).
|
||||||
memory*: Memory # EVM memory on return (for test only).
|
memory*: Memory # EVM memory on return (for test only).
|
||||||
error*: Error # Error if `isError` (for test only).
|
|
||||||
|
|
||||||
proc hostToComputationMessage*(msg: EvmcMessage): Message =
|
proc hostToComputationMessage*(msg: EvmcMessage): Message =
|
||||||
Message(
|
Message(
|
||||||
@ -222,4 +221,3 @@ proc runComputation*(call: CallParams): CallResult =
|
|||||||
shallowCopy(result.logEntries, c.logEntries)
|
shallowCopy(result.logEntries, c.logEntries)
|
||||||
result.stack = c.stack
|
result.stack = c.stack
|
||||||
result.memory = c.memory
|
result.memory = c.memory
|
||||||
result.error = c.error
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user