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 -1
View File
@@ -23,7 +23,7 @@ using namespace yul::test::yul_fuzzer;
void yulFuzzerUtil::interpret(ostream& _os, shared_ptr<yul::Block> _ast)
{
InterpreterState state;
state.maxTraceSize = 10000;
state.maxTraceSize = 75;
Interpreter interpreter(state);
try
{