Add note about cyclic dep

This commit is contained in:
coffeepots 2018-11-08 16:40:40 +00:00
parent 6eb430fd52
commit 1cead76327
1 changed files with 2 additions and 0 deletions

View File

@ -146,6 +146,8 @@ proc applyMessage(computation: var BaseComputation, opCode: static[Op]) =
gas = computation.msg.gas
# Run code
# We cannot use the normal dispatching function `executeOpcodes`
# within `interpreter_dispatch.nim` due to a cyclic dependency.
if not computation.execPrecompiles:
computation.opcodeExec(computation)