Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions qiling/arch/evm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import sys

# python 3.10 has not been supported yet in the latest blake2b-py release
if sys.version_info >= (3,10):
sys.exit('Sorry, Python > 3.10 is not supported for now')

# Ensure we can reach 1024 frames of recursion
#
EVM_RECURSION_LIMIT = 1024 * 12
Expand Down