yul Interpreter: Move memory size limit to interpreter state.

This commit is contained in:
Bhargava Shastry
2019-03-26 14:42:25 +01:00
parent d67a1ec1b4
commit ef94d6d645
4 changed files with 6 additions and 6 deletions
+1
View File
@@ -86,6 +86,7 @@ void interpret(string const& _source)
InterpreterState state;
state.maxTraceSize = 10000;
state.maxMemSize = 0x20000000;
Interpreter interpreter(state);
try
{