remove error field from evm CallResult

This commit is contained in:
jangko 2021-10-14 13:26:42 +07:00
parent 08f8652790
commit 71273f2f4c
No known key found for this signature in database
GPG Key ID: 31702AE10541E6B9
1 changed files with 0 additions and 2 deletions

View File

@ -46,7 +46,6 @@ type
logEntries*: seq[Log] # Output logs.
stack*: Stack # EVM stack 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 =
Message(
@ -222,4 +221,3 @@ proc runComputation*(call: CallParams): CallResult =
shallowCopy(result.logEntries, c.logEntries)
result.stack = c.stack
result.memory = c.memory
result.error = c.error