We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b54e3 commit 84cc036Copy full SHA for 84cc036
src/ethereum_test_forks/forks/forks.py
@@ -1375,6 +1375,15 @@ def is_deployed(cls) -> bool:
1375
"""
1376
return False
1377
1378
+ @classmethod
1379
+ def valid_opcodes(
1380
+ cls,
1381
+ ) -> List[Opcodes]:
1382
+ """Return list of Opcodes that are valid to work on this fork."""
1383
+ return [
1384
+ Opcodes.CLZ,
1385
+ ] + super(Prague, cls).valid_opcodes()
1386
+
1387
@classmethod
1388
def solc_min_version(cls) -> Version:
1389
"""Return minimum version of solc that supports this fork."""
0 commit comments