Skip to content

Commit

Permalink
Increase timeout.
Browse files Browse the repository at this point in the history
  • Loading branch information
palkeo committed Apr 23, 2020
1 parent f9f86d9 commit 032d64b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panoramix.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def decompile(this_addr, only_func_name=None):
if target > 1 and loader.lines[target][1] == "jumpdest":
target += 1

@timeout_decorator.timeout(30, use_signals=True) # 180 used in production
@timeout_decorator.timeout(120, use_signals=True)
def dec():
trace = VM(loader).run(target, stack=stack)
explain("Initial decompiled trace", trace[1:])
Expand Down

0 comments on commit 032d64b

Please sign in to comment.